gpt4 book ai didi

javascript - 如何在对象数组中使用 usestate 更新状态?

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

我在使用 React useState Hook 时遇到了一些问题。我有一个带有复选框按钮的 todolist,我想将 'done' 属性更新为 'true',它的 id 与 'clicked' 复选框按钮的 id 相同。如果我 console.log 我的 'toggleDone' 函数,它会返回正确的 id。但我不知道如何更新正确的属性。
当前状态:

const App = () => {

const [state, setState] = useState({
todos:
[
{
id: 1,
title: 'take out trash',
done: false
},
{
id: 2,
title: 'wife to dinner',
done: false
},
{
id: 3,
title: 'make react app',
done: false
},
]
})

const toggleDone = (id) => {
console.log(id);
}

return (
<div className="App">
<Todos todos={state.todos} toggleDone={toggleDone}/>
</div>
);
}
我想要的更新状态:
const App = () => {

const [state, setState] = useState({
todos:
[
{
id: 1,
title: 'take out trash',
done: false
},
{
id: 2,
title: 'wife to dinner',
done: false
},
{
id: 3,
title: 'make react app',
done: true // if I checked this checkbox.
},
]
})

最佳答案

您可以安全地使用 javascript 的数组映射功能,因为它不会修改现有的状态, react 不喜欢,它会返回一个新数组。该过程是循环遍历状态的数组并找到正确的 id。更新 done bool 值。然后使用更新的列表设置状态。

const toggleDone = (id) => {
console.log(id);

// loop over the todos list and find the provided id.
let updatedList = state.todos.map(item =>
{
if (item.id == id){
return {...item, done: !item.done}; //gets everything that was already in item, and updates "done"
}
return item; // else return unmodified item
});

setState({todos: updatedList}); // set state to new object with updated list
}
编辑:更新代码以切换 item.done而不是将其设置为 true。

关于javascript - 如何在对象数组中使用 usestate 更新状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62918710/

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