Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能解释 asyncStorage 是如何工作的?它是否连接到 SQLite 或 RocksDB 等数据库?asyncstorage 是否直接将数据写入数据库?
AsyncStorage 是一个简单的、未加密的、异步的、持久的、键值存储系统,对应用程序来说是全局的。应该使用它来代替 LocalStorage。
当您想在 App 中全局使用某些变量时,它会使用 full。例如,当您第一次在应用程序中登录时,存储登录 ID 和密码,下次它将从 AsyncStorage 获取数据并成功登录..
参考这个链接