存储。 get函数返回null值。 这是我的代码
username:any;
this.storage.get('user').then((value) => {
this.username = value;
});
console.log(this.username);
output : undefined;
答案 0 :(得分:1)
你为什么使用功能? 您只需使用以下代码获取商店值:
this.username = JSON.parse(localStorage.getItem('user'));
答案 1 :(得分:0)
如果您想使用本地存储:
username:any;
this.username = localStorage.getItem('user');
console.log(this.username);