gpt4 book ai didi

javascript - 在函数之后调用 setState

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

我知道 setState 是异步的,但无论如何(没有 Redux)在执行另一个函数之后调用 setState 如下所示:

handleOpenUpdateItem = (item) => {
const { getImageByItemId } = this.props;
getImageByItemId(item.id);
this.setState({ updateMode: true, item });
};

您好!

最佳答案

将您的handleOpenUpdateItem 转换为async 函数。然后你可以在其中编写同步代码。

  async handleOpenUpdateItem(item) {
const { getImageByItemId } = this.props;
const item = await getImageByItemId(item.id); // wait for the call to the backend to finish
this.setState({ updateMode: true, item });
};

关于javascript - 在函数之后调用 setState,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55391967/

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