为了账号安全,请及时绑定邮箱和手机立即绑定

react+redux,异步请求为什么要写在action creator里面?

react+redux,异步请求为什么要写在action creator里面?

翻翻过去那场雪 2019-02-07 14:50:49
在redux官方文档里面,针对异步给出的方案是:export function fetchPosts(subreddit) {  return function (dispatch) {    dispatch(requestPosts(subreddit));//准备发起请求    return fetch(`http://www.subreddit.com/r/${subreddit}.json`)      .then(response => response.json())      .then(json => dispatch(receivePosts(subreddit, json)))//拿到请求结果  }}主要思路是:这是一个特殊的action creator(返回了一个function)在这个action creator里面,可以dispatch其他action通过redux-thunk中间件,可以dispatch(fetchPosts('sth'))为什么异步请求不能直接写在容器组件的mapDispatchToProps里面?感觉1.不用引中间件(redux-thunk、redux-promise)了,也不用考虑中间件执行顺序等问题。2.逻辑写在容器组件里面,感觉没什么毛病,UI组件如果需要,都可以拿到。
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 608 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信