我想在我的React Native应用程序中实现与javascript localStorage等效的功能。但我不知道怎么设置。为了实现我想要的功能,我希望每次打开应用程序时都存储localStorage。有办法做到这一点吗?
yhived7q1#
异步存储-https://github.com/react-native-async-storage/async-storage安全存储(博览会)-https://docs.expo.dev/versions/latest/sdk/securestore/
jckbn6z72#
现在比React Native Async Storage更好的选择是React Native MMKV。它支持同步获取/设置字符串、布尔值和数字。阅读更多关于为什么推荐MMKV而不是异步存储here的信息。
4c8rllxm3#
在React Native应用程序中,数据可以使用AsyncStorage在本地持久化。You can check it out here.
3条答案
按热度按时间yhived7q1#
异步存储-https://github.com/react-native-async-storage/async-storage
安全存储(博览会)-https://docs.expo.dev/versions/latest/sdk/securestore/
jckbn6z72#
现在比React Native Async Storage更好的选择是React Native MMKV。它支持同步获取/设置字符串、布尔值和数字。
阅读更多关于为什么推荐MMKV而不是异步存储here的信息。
4c8rllxm3#
在React Native应用程序中,数据可以使用AsyncStorage在本地持久化。
You can check it out here.