redux-thunk https://github.com/reduxjs/redux-thunk Why Do I Need This? Thunks are the recommended middleware for basic Redux side effects logic, including complex synchronous logic that needs access to the store, and simple async logic like AJAX requ…
redux是什么? redux是一个用于管理js应用状态的容器.redux出现时间并不是很长,在它出现之前也有类似功能的模块出现,诸如flux等等.redux设计的理念很简单,似乎最初这个开发团队就有让redux可以方便融入在server, browser, mobile client端的打算.目前在github上redux-*的第三方中间件.插件越来越多.如果react项目中想使用redux,那么就有react-redux插件来完成配合.而作为开发者,可以使用这些优秀的第三方资源来开发/优化已…