gpt4 book ai didi

javascript - 如果一个函数更新状态而另一个函数紧接着访问该状态,是否会导致竞争条件?

转载 作者:行者123 更新时间:2023-11-29 15:08:33 25 4
gpt4 key购买 nike

我有两个组件,一个是上传文件,另一个是可以提交的表单。上传者在上传完成时有回调,表单在提交时有回调。我的目标是在上传者完成上传并提交表单时向后端发出请求,而不关心哪个先发生。

我目前的解决方案是这样的:

const [isFileUploaded, setFileUploaded] = useState(false);
const [isFormSubmitted, setFormSubmitted] = useState(false);

const handleUploadFinish = ( {signedBlobId} ) => {
// update params to be sent to the backend with the signedBlobId

setFileUploaded(true)

if (isFormSubmitted) {
// make the backend call
}
}

const handleFormSubmitted = (values) => {
// update params to be sent to the backend with the values

setFormSubmitted(true)

if (setFileUploaded) {
// make the backend call
}
}

但是,我读了the React documentation on state该设置状态是一个异步操作。这让我担心如果两个回调碰巧几乎同时被调用,isFileUploadedisFormSubmitted 可能仍然是 false 当它们被检查时,防止后端调用发生。

这是一个合理的担忧吗?如果是这样,有什么更好的处理方法?

最佳答案

是的,按照您构建逻辑的方式,可能会出现竞争条件。您应该希望您的代码具有更同步的模式。幸运的是,有一种方法可以通过集成 useEffect() Hook 来解决这个问题。本质上,只要您订阅的值发生变化,它就会被触发。

在这种情况下,我们要验证 isFileUploadedisFormSubmitted 都为真,然后我们才会进行最终的后端 API 调用。

考虑这样一个例子:

import React, { useState, useEffect } from "react"

const myComponent = () => {

const [isFileUploaded, setFileUploaded] = useState(false);
const [isFormSubmitted, setFormSubmitted] = useState(false);
const [params, setParams] = useState({})

const handleUploadFinish = ( {signedBlobId} ) => {
// update params to be sent to the backend with the signedBlobId
setFileUploaded(true)
}

const handleFormSubmitted = (values) => {
// update params to be sent to the backend with the values
setFormSubmitted(true)
}

useEffect(() => {
if(isFormSubmitted && isFileUploded){
...make backend call with updated params
}
}, [isFormSubmitted, isFileUploaded])

return(
....
)
}

关于javascript - 如果一个函数更新状态而另一个函数紧接着访问该状态,是否会导致竞争条件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57235498/

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