gpt4 book ai didi

redux-observable - 如何使用 Redux Observable 填充商店并按顺序等待返回?

转载 作者:行者123 更新时间:2023-12-02 01:12:53 25 4
gpt4 key购买 nike

我正在尝试使用 Redux Observable 调用一个操作来获取一些数据,等待它返回,然后获取更多依赖于它的数据。

我有一个从提取 FetchTodos 填充商店的史诗。这会监听 FETCH_TODOS 操作,然后调用我的 todos API 并填充 {todos: [] } =

我的商店 todoComments 中也有一个评论部分。但是,我只想在 FETCH_TODOS 返回并填充商店后填充 todoComments

在命令式代码中,这可能看起来像:

let todos = await api.get('/todos');
await dispatch("FETCH_TODO_COMPLETE", todos)
let firstId = getState().todos[0].id
let comments = await api.get(`/todos/${firstId}/comments')
await dispatch("FETCH_COMMENTS_COMPLETE", { todo_id: firstId, comments})

我看到的最接近的是 this issue在 Redux Observable Repo 中,但我不明白如何有效地做到这一点。这对我来说是一个很常见的场景。

我想重用尽可能多的代码。在此示例中,我可以从多个组件分派(dispatch) FETCH_TODOS

我如何使用 Redux-Observable 完成此操作?

最佳答案

根据我们在评论中的对话:

在 redux-observable 中,您可以通过多种方式对事物进行排序。你可以使用普通的 RxJS 在一个史诗中完成所有这些,或者你可以将它们分成多个。如果将它们分开,后续的史诗将监听前一个史诗已完成其任务的信号。像这样:

// this assumes you make your `api.get` helper return an Observable
// instead of a Promise which is highly advisable.
// If it doesn't, you could do:
// Observable.from(api.get('/url'))
// but Promises are not truly cancellable which can cause max
// concurrent connections issues

const fetchTodosEpic = action$ =>
action$.ofType('FETCH_TODOS')
.switchMap(() =>
api.get('/todos')
.map(todos => ({
type: 'FETCH_TODOS_COMPLETE',
todos
}))
);

const fetchComments = action$ =>
action$.ofType('FETCH_TODOS_COMPLETE')
.switchMap(({ todos }) =>
api.get(`/todos/${todos[0].id}/comments`)
.map(comments => ({
type: 'FETCH_COMMENTS_COMPLETE',
comments
}))
);

关于redux-observable - 如何使用 Redux Observable 填充商店并按顺序等待返回?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44218356/

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