AsyncStorage是否跨应用程序共享?

时间:2018-02-14 15:30:37

标签: react-native asyncstorage

我的问题来自文档:https://facebook.github.io/react-native/docs/asyncstorage.html#clear

  

AsyncStorage.clear - >删除所有客户端,库等的所有AsyncStorage ....

这是否意味着所有应用共享相同的AsyncStorage?

1 个答案:

答案 0 :(得分:5)

AsyncStorage在多个应用之间共享 。每个应用程序都运行它自己的沙盒环境,无法访问其他应用程序。

调用AsyncStorage.clear只表示您将删除应用程序存储在AsyncStorage中的所有数据。

包括

有关应用程序沙盒的更多信息,请阅读以下答案: What is Sandbox in ios , Can i Trans data between in one App to Another App in iPhone,if possible how