gpt4 book ai didi

javascript - Async await 或 .then() 为 redux 操作返回 undefined

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

我这样做:await dispatch(myfunction(arg1)) 如果我添加 .then()

const x = await dispatch(myfunction(arg1)) 
console.log(x)

都返回未定义...

但是当我在浏览器中查看响应时,我得到了我期望的数据

有什么想法吗?

action creator 只是通过一些中间件并调用一些 action,不知道为什么它是未定义的

最佳答案

Dispatch 不返回 promise 。它只是触发更新发生。如果您需要使用 promises,请考虑使用 redux-thunk,然后执行以下操作:

let thunkAction = async (args1) => {
let res = await myFunction(args1);
dispatch(someUpdate(res));
}

关于javascript - Async await 或 .then() 为 redux 操作返回 undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57354466/

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