Tay*_*sis 6 javascript react-native asyncstorage
我正在尝试通过 AsyncStorage.setItem(KEY, VALUE); 获取保存在我的设备中的单个值。
我有这个localStorage.js文件来管理本地数据
import React from 'react';
import { AsyncStorage } from 'react-native';
const storageSet = async(key, value) => {
try {
await AsyncStorage.setItem(key, value);
} catch(error) {
console.log(error);
}
}
const storageGet = async(key) => {
try {
const result = await AsyncStorage.getItem(key);
console.log(result);
return result;
} catch(error) {
console.log(error);
}
}
export { storageSet, storageGet };
Run Code Online (Sandbox Code Playgroud)
在login.js文件中,我调用这些传递参数的函数。它保存正确。但是当我尝试getItem( ) 值时,我有两个不同的返回值,一个promise和一个值。跟随:
console.log(result) whithin storageGet('key'),这就是我想要的。
57d7bc714b269533
1
ASUS_Z00AD
1.0
null
1
Run Code Online (Sandbox Code Playgroud)
console.log(result) out storageGet('key') 函数。在main.js 中,当我调用它时。
{login: "Hh", senha: "Hu", imei: Promise, tipo: Promise, modelo: Promise, …}
imei:
Promise {_40: 0, _65: 1, _55: **"57d7bc714b269533"**, _72: null}
login: "Hh"
mobile_key:
Promise {_40: 0, _65: 1, _55: **null**, _72: null}
mobile_push:
Promise {_40: 0, _65: 1, _55: **"1"**, _72: null}
modelo:
Promise {_40: 0, _65: 1, _55: **"ASUS_Z00AD"**, _72: null}
senha: "Hu"
tipo:
Promise {_40: 0, _65: 1, _55: **"1"**, _72: null}
versao:
Promise {_40: 0, _65: 1, _55: **"1.0"**, _72: null}
__proto__: Object
Run Code Online (Sandbox Code Playgroud)
PS.: 上面的一些项目没有从 getItem() 返回。
为什么它不只返回单个值?
由于storageGet返回承诺,您还需要在任何使用它的地方使用 await:
const value = await storageGet(key);
Run Code Online (Sandbox Code Playgroud)
小智 5
AsyncStorage 仅将数据保存为字符串。您只需要在保存时使用 JSON.stringify() 并在检索时使用 JSON.parse() 。
AsyncStorage.getItem('key')
.then((value) => {
const data = JSON.parse(value);
console.log('name is ', data.name);
});
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
8360 次 |
| 最近记录: |