AsyncStorage是永久的还是临时的?

问题描述:

我是React Native的新手,在结束我的应用程序后,我想知道AsyncStorage是否清晰。 AsyncStorage是否有其他选择?AsyncStorage是永久的还是临时的?

+0

的可能的复制[是AsyncStorage永久的吗?](https://*.com/questions/43273302/is-asyncstorage-permanent) – Set

如果关闭应用程序,但是在使用AsyncStorage API存储数据之前它不会清除它,当您使用AsyncStorage时,您的应用程序将持续存储系统上的全局数据。

你可以看到它是如何工作的,并可以从公报的文档的方法https://facebook.github.io/react-native/docs/asyncstorage.html#asyncstorage

一旦应用程序关闭,它不会清除存储。

然而,您可以通过设置 - >应用程序清除存储/缓存。