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