gpt4 book ai didi

reactjs - UseState 仅在第二次点击时显示

转载 作者:行者123 更新时间:2023-12-05 04:58:27 29 4
gpt4 key购买 nike

我在单击表单提交按钮时使用 React useState 钩子(Hook)更新状态,直到第二次单击时状态才会更新。相信我需要使用 useEffect 但不确定如何使用 onClick 来实现。

const files = [
{
id: 'foo'
}
]

const [fieldName, setName] = useState({});


const onSubmit = () => {
files.map((file) => {
if (!fieldName[file.id]?.value) {
setName(() => ({
...fieldName,
[file.id]: {
value: test[file.id]?.value,
error: true
},
}));
}
});

console.log(fieldName);
// Output = {}
// Expected Output = { foo: { error: true } }

if (fieldName) // simply to show i need access to updated fieldName at this point

};

最佳答案

如评论中所述; useState 是一个异步函数,因此不能保证您会在再次检索其值时获得新值。这是出于性能原因,允许批处理多个状态更改。

在同一方法中继续使用新值的最简单方法是将其保存到变量中,如下所示:

const [clicked, setClicked] = useState(false);

function onclick(e) {
setClicked(true);
if (clicked) { //this goes wrong as clicked likely isn't updated yet
//do something
}
}
const [clicked, setClicked] = useState(false);

function onclick(e) {
const newClicked = true;
setClicked(newClicked);
if (newClicked) { //using the variable garantuees you'll get the value you want
//do something
}
}

关于reactjs - UseState 仅在第二次点击时显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63951658/

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