我当前的项目需要我在本地存储用户数据,所以我使用 react native 本身的 AsyncStorage。但是,我遇到了一些关于如何检索已经保存的数据的问题,我总是得到空值,但不知何故,数据被保存了..
我总是得到
{ _45:0,_81:0,_65:空,_54:空}
这是我的代码,这是来自 react native 文档的简单示例
AsyncStorage.setItem('baru', 'this is new dude!!');
var b = AsyncStorage.getItem('baru');
console.log(b);