码迷,mamicode.com
首页 > 其他好文 > 详细

Middleware

时间:2017-07-12 15:21:20      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:中间   with   font   16px   reducer   custom   size   logs   store   

redux中间件就是对dispatch进行处理,dispatch接收action creator后先进行处理后再讲action传给reducer

技术分享

使用方法:

const createStoreWithMiddleware = applyMiddleware(
  thunkMiddleware,
  loggerMiddleware
)(createStore);
store
= createStoreWithMiddleware(rootReducer, initialState);

执行过程:

技术分享

编写middleware:

const customMiddleware = store => next => action => {
  if(action.type !== ‘custom‘) return next(action)
  //do stuff!
}

 

Middleware

标签:中间   with   font   16px   reducer   custom   size   logs   store   

原文地址:http://www.cnblogs.com/lee1993/p/7155179.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!