Redux-thunk处理异步Action
incuisting opened this issue · 0 comments
incuisting commented
首先reudx-thunk是一个redux 的中间件,中间件主要完成action在dispatch之后达到reducer之前这个间隙里的操作。
什么是异步action对象?
异步action对象不是对象,它是一个函数,如果不存在redux-thunk,这些函数类型的action会被派发给reducer,然后reducer实际上处理不了这样的函数类型的action,所以就啥屁事没有。
但是!只要有了redux-thunk,它会在dispatch到reducer 的路上对检查action对象是不是函数,如果不是函数类型的action,也啥事不做。如果检查出来是函数类型的action,那么就让它站住,然后执行这个函数类型的action,并把Store的dispatch函数和getState函数作为参数让它吃下去。。到目前为止 这个函数类型的action还是卡在redux-thunk这里,不会继续往前到达reducer。
举个栗子
const increment = () =>({
type:ActionTypes.INCREMENT
})
const incrementAsync = () =>{
return (dispatch) => { //把Store 的dispatch函数丢进去
setTimeout (()=> { //定时
dispatch(increment()); //dispatch 上面那个increment这个Action生成函数
},1000)
}
}
异步操作的模式
一般定义一个异步action,要涉及到它的三个状态
- 异步操作正在进行中
- 异步操作已经成功完成
- 异步操作失败