react native
周GM
全栈是未来
展开
-
react native 中使用 redux-persist
为什么要用 redux-persistredux-persist是一个持久化存储state的插件,那么为什么要用它呢?持久化对于前端开发有什么好处?2个问题可以一起回答:redux的store状态树保存的state并不是持久保存的,state只是一个内存机制,而我们知道,本地数据库或者像localstorage之类的缓存系统才有可能长时间保存数据,而redux-persist可以让你的数据从...原创 2020-01-16 17:28:15 · 1026 阅读 · 0 评论 -
react native 使用 immutable
react native + redux + immutable举一个加减的小例子首先,安装依赖:yarn add immutable redux-immutable 使用 redux 时,需要改 reducer:import { combineReducers } from 'redux-immutable'import count from './count'export de...原创 2020-01-05 21:25:57 · 393 阅读 · 0 评论