gpt4 book ai didi

javascript - react useState() 数组不更新

转载 作者:行者123 更新时间:2023-12-05 08:50:00 24 4
gpt4 key购买 nike

我使用 React 创建了新的自定义选择框。有一个预填充的数组,我正在加载组件加载(使用 useEffect)。当用户搜索任何不存在的国家时,将有一个添加选项。所以我使用 useState 上瘾了。代码如下:-

const [countries, setCountries] = useState([]);

国家列表:-

[
{"value": 1, "label": "Singapore"},
{"value": 2, "label": "Malaysia"},
{"value": 3, "label": "Indonesia"},
{"value": 4, "label": "Phillipines"},
{"value": 5, "label": "Thailand"},
{"value": 6, "label": "India"},
{"value": 7, "label": "Australia"},
{"value": 8, "label": "Pakistan"}
]


const handleHTTPRequest = () => {
service.getData()
.then(res => {
setCountries(res);
})
.catch((err) => console.error(err))
}

useEffect(() => {
handleHTTPRequest()
})

我正在检查数组中搜索到的国家,如果不存在,我只需添加到数组中

const addCountry = (country) => {
let isRecordExist = countries.filter(c => c.label === country).length > 0 ? true : false;
const obj = {
value: countries.length + 1,
label: country
}
let updatedVal = [...countries, obj]

setSelectedCountry(country)

if (!isRecordExist) {
**setCountries**(updatedVal) // updating array
}
}

问题是它没有更新,尽管我可以在 updatedVal 中看到数据。

完整代码在这里:-

https://github.com/ananddeepsingh/react-selectbox

最佳答案

问题似乎是您正在将其引用未更改的数组 (updatedVal) 传递给 useState(),因此 React 看起来您的数据没有被修改,它bails out without updating your state .

尝试删除不必要的变量并直接执行 setCountries([...countries, obj])

我建议对您的代码进行另一个小修复:您可以使用 Array.prototype.every()确保每个现有项目都有不同的 label。与 .filter() 相比,它有两个优点 - 它会在遇到重复项(如果存在)时立即停止循环,并且不会继续执行到数组末尾(如 .filter() 确实如此),因此不会因不必要的重新渲染而减慢速度,并且它会返回 bool 值,因此您实际上不需要额外的变量。

以下是该方法的快速演示:

const { useState, useEffect } = React,
{ render } = ReactDOM,
rootNode = document.getElementById('root')

const CountryList = () => {
const [countries, setCountries] = useState([])

useEffect(() => {
fetch('https://run.mocky.io/v3/40a13c3b-436e-418c-85e3-d3884666ca05')
.then(res => res.json())
.then(data => setCountries(data))
}, [])

const addCountry = e => {
e.preventDefault()
const countryName = new FormData(e.target).get('label')
if(countries.every(({label}) => label != countryName))
setCountries([
...countries,
{
label: countryName,
value: countries.length+1
}
])
e.target.reset()
}

return !!countries.length && (
<div>
<ul>
{
countries.map(({value, label}) => (
<li key={value}>{label}</li>
))
}
</ul>
<form onSubmit={addCountry}>
<input name="label" />
<input type="submit" value="Add country" />
</form>
</div>
)
}

render (
<CountryList />,
rootNode
)
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.12.0/umd/react.production.min.js"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.11.0/umd/react-dom.production.min.js"></script><div id="root"></div>

关于javascript - react useState() 数组不更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63092367/

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