加密对象到locastorage / 从 locastorage解密对象
Posted 7qin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了加密对象到locastorage / 从 locastorage解密对象相关的知识,希望对你有一定的参考价值。
var obj={name:"致远",age:21,address:"江西上饶XXXX",hobby:"看书,编程"};
//用中文 记得加encodeURIComponent()!
localStorage.setItem("obj",window.btoa(window.encodeURIComponent(JSON.stringify(obj))));
//用中文 记得加decodeURIComponent()!
var obj=JSON.parse(decodeURIComponent(window.atob(localStorage.getItem("obj"))));
console.info(obj);
以上是关于加密对象到locastorage / 从 locastorage解密对象的主要内容,如果未能解决你的问题,请参考以下文章