我正在尝试使用异步存储和"react native web“,但它显示”AsyncStorage is null“。
我运行的命令:
yarn add @react-native-community/async-storage
react-native link @react-native-community/async-storage当我尝试打开localhost:3000时,它显示该错误。
你知道怎么解决这个问题吗?
发布于 2020-05-11 11:24:22
我认为可以做的一件事是使用@callstack/async-storage模块。
import AsyncStorage from '@callstack/async-storage';
根据他们的github repo,你可以在web和移动设备上使用它,并且使用redux-persist效果很好。
https://stackoverflow.com/questions/57357415
复制相似问题