在 React Native 中存储对象的最佳方式是什么? redux-persist 或 localStorage

What is the best way to store objects in React Native; redux-persist or localStorage

我想在我的 React Native 应用程序中存储一些数据。 哪一个是最佳实践; redux-persistlocalStorage?

localStorageredux-persist 的商店引擎之一。参见 https://github.com/rt2zz/redux-persist#storage-engines。它们不是一回事,不能相提并论。 redux-persist 除了存储引擎,Redux persist 自带react 集成也是为了方便,一般来说够用了。

redux-persist 提供了一些状态协调器策略,可以帮助您轻松协调状态。

您可以使用黑名单和白名单功能决定将哪个状态切片保存到商店引擎。