加密对象到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解密对象的主要内容,如果未能解决你的问题,请参考以下文章

vue.js存储--localStorage

开启nginx加密模块ssl

前端的页面间进行值的传递

android html5 localstorage某手机从localstorage中取不到数据

IOS存档是不是加密对象

如何在 iOS 中加密 mp3 文件