ionic 3 - storage.get函数在函数外返回null值

时间:2018-04-04 06:22:43

标签: angular typescript ionic3

存储。 get函数返回null值。 这是我的代码

username:any;

this.storage.get('user').then((value) => {
       this.username = value;
    });

console.log(this.username);

output : undefined;

2 个答案:

答案 0 :(得分:1)

你为什么使用功能? 您只需使用以下代码获取商店值:

this.username = JSON.parse(localStorage.getItem('user'));

答案 1 :(得分:0)

如果您想使用本地存储:

username:any;

this.username = localStorage.getItem('user');

console.log(this.username);