本文介绍了与 react native web 一起使用时,AsyncStorage 为 null的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试将异步存储与react native web"一起使用,但它说AsyncStorage is null".
I am trying to use async storage with "react native web" but it is saying " AsyncStorage is null".
我运行的命令:
yarn add @react-native-community/async-storage
react-native link @react-native-community/async-storage
当我尝试打开 localhost:3000 时,它说那个错误.
When I try to open localhost:3000, it says that error.
知道如何解决这个问题吗?
Any idea how to fix this?
推荐答案
我认为你可以做的一件事就是使用 @callstack/async-storage 模块.
I think one thing you can do is use @callstack/async-storage module.
从'@callstack/async-storage'导入AsyncStorage;
根据他们的 github 存储库,您可以在网络和移动设备上使用它,并且与 redux-persist 配合使用效果很好.
According to their github repo, you can use it on web and mobile and works excellent with redux-persist.
这篇关于与 react native web 一起使用时,AsyncStorage 为 null的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!