1. 首页
  2. 移动开发
  3. 其他
  4. redux debounce:符合FSA的中间件用于Redux消除动作反弹 源码

redux debounce:符合FSA的中间件用于Redux消除动作反弹 源码

上传者: 2021-04-04 23:12:34上传 ZIP文件 16.02KB 热度 20次
redux-debounce 符合FSA的中间件,用于Redux消除动作反弹。 安装 $ npm install --save redux-debounce 用法 // Store setup import { applyMiddleware , createStore } from 'redux' import createDebounce from 'redux-debounce' import createLogger from 'redux-logger' import promise from 'redux-promise' import thunk from 'redux-thunk' const config = { simple : 300 } const debouncer = createDebounce ( config ) const logger = cre
用户评论