Redux 的中间件和异步操作

一、同步和异步

首先讲一下在redux之中,Action的同步和异步的概念。

异步:Action发出之后,过一段时间在执行Reducer,这就是异步。

同步:Action发出之后,Reducer立即算出state,这叫同步。

二、中间件的概念

中间件:(middleware)能使Reducer在异步操作结束之后,自动执行。

![image](http://upload-images.jianshu.io/upload_images/6765281-033e89545b881da7.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

你可能感兴趣的:(Redux 的中间件和异步操作)