({ getState }) => next => async action => {
// do something
await next()
// do something
},
// getState: 和useStoreState的使用方式一样,也是传入"访问路径"获取当前的状态
// next: 进入下一步,有可能是middleware,也有可能执行到了effect或reducer
const middlewares = [
({ getState }) => next => async action => {
console.log('m1 start')
await next()
console.log('m1 end')
},
({ getState }) => next => async action => {
console.log('m2 start')
await next()
console.log('m2 end')
},
]
// 最终每次执行dispatch时,都会输出如下
// 'm1 start'
// 'm2 start'
// 'm2 end'
// 'm1 end'
({ getState }) => next => async action => {
const team1 = getState(['team'])
await next() // 假装这里有修改team的操作
const team2 = getState(['team'])
console.log(team1 === team2) // false
}