gpt4 book ai didi

redux - 如何在 Redux 中处理两个连续和依赖的 Async 调用?

转载 作者:行者123 更新时间:2023-12-03 20:50:12 31 4
gpt4 key购买 nike

我通过调用操作 fetchPosts 异步获取帖子列表来自 componentDidMount 上的组件.我想,一旦该请求被相关的 reducer (更新状态)接收并处理,调用另一个 Action fetchPostsMetaData , 带有一组刚收到的帖子的 ID。

我正在使用 redux-thunk中间件,并使用 jQuery.ajax 发出我的 ajax 请求

解决这个问题的最佳方法是什么?我试过谷歌搜索,但找不到相关的例子/答案。

最佳答案

使用 redux-thunk :

class PostIndex extends React.Component {
componentDidMount() {
const { dispatch } = this.props;
dispatch(getPosts());
}
...
}

function fetchPosts() {
return dispatch => {
fetchPostsAjax()
.then(res => {
dispatch({ type: 'RECEIVE_POSTS', payload: res });
dispatch(fetchPostMeta(res));
})
}
}

function fetchPostMeta(posts) {
return dispatch => {
fetchPostMetaAjax(posts)
.then(res => dispatch({ type: 'RECEIVE_POST_META', payload: res }));
}
}
}

function fetchPostAjax() {
// return a promise, whether from jQuery.ajax or fetch
}

function fetchPostMetaAjax() {
// return a promise
}

这是 redux-thunk 的一个非常标准的用例.上面的示例迎合了您提出问题的方式,但您可以在看起来像 redux-thunk 的单个 Action 创建器中完成此操作。此处提供的示例: http://redux.js.org/docs/advanced/AsyncActions.html

不同的是,在我的示例中,我在 thunk 内部调度 thunk,而不是直接在第一个 thunk 内部执行第二个任务。所以它相当于:
function fetchPosts() {
return dispatch => {
fetchPostsAsync()
.then(res => { // res is posts
dispatch({ type: 'RECEIVE_POSTS', payload: res });
return fetchPostMetaAsync(res);
})
.then(res => { // res is metadata
dispatch({ type: 'RECEIVE_POST_META', payload: res });
})
}
}

你不会遇到任何竞争条件,因为当你调度像 { type: RECEIVE_POSTS, payload: res } 这样的 Action 时,它是同步的,并且在您调度以下异步操作之前,reducer 会更新。

关于redux - 如何在 Redux 中处理两个连续和依赖的 Async 调用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33342971/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com