蚁景网安渗透测试工程师特训班10期
action => {
console.log('will dispatch', action)
// 此处的 next === dispatch === store.dispatch === createStore(reducer, preloadedState).dispatch
const returnValue = next(action)
console.log('state after dispatch', getState())
return returnValue}