An asynchronous, unencrypted, persistent, key-value storage system for React Native.
Async Storage 只能用来储存字符串数据,所以为了去储存object类型的数据,得先进行序列化(JSON.stringify()
)当你想要使用数据的时候,就可以使用JSON.parse()
An asynchronous, unencrypted, persistent, key-value storage system for React Native.
Async Storage 只能用来储存字符串数据,所以为了去储存object类型的数据,得先进行序列化(JSON.stringify()
)当你想要使用数据的时候,就可以使用JSON.parse()
import AsyncStorage from '@react-native-async-storage/async-storage'
useEffect(() => {
Api.h5.uploadGetTokenForH5().then(async (res) => {
if (res.code === 200) {
await AsyncStorage.setItem('qiniuUploadTokenForH5', res.data.token)
const qiniuUploadTokenForH5 = await AsyncStorage.getItem('qiniuUploadTokenForH5')
console.log('qiniuUploadTokenForH5', qiniuUploadTokenForH5)
}
})
}, [])
参考链接:
https://chat.xutongbao.top/文章来源:https://www.toymoban.com/news/detail-606348.html
https://github.com/react-native-async-storage/async-storage#readme文章来源地址https://www.toymoban.com/news/detail-606348.html
到了这里,关于react native 本地存储 AsyncStorage的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!