$scope.accountObj = { isErrorMsg:false,isReadonly:false,createAccountErr:false };
$scope.accountObj = { isErrorMsg:false,isReadonly:false,createAccountErr:false };
var secretKey = 'your-secret-key';
然后,您需要存储和声明数据的方法:
store : function (key,value) { var encryptedData = CryptoJS.AES.encrypt(angular.toJson(value),secretKey).toString(); window.localStorage.setItem(key,encryptedData); },get : function (key) { var encryptedData = window.localStorage.getItem(key); if (!_.isNull(encryptedData)) return angular.fromJson(CryptoJS.AES.decrypt(encryptedValue,secretKey).toString(CryptoJS.enc.Utf8)); return null; }
这里唯一的问题是密钥存储在客户端,这是这种加密的破坏逻辑.