gpt4 book ai didi

javascript - 如何修复 "no-param-reassign"eslint 错误?

转载 作者:行者123 更新时间:2023-11-30 13:56:26 27 4
gpt4 key购买 nike

如何修复错误 "no-param-reassign": [2, {"props": false}]"

这是我收到 Eslint 错误的示例:

 filtersList.forEach((filter) => {
if (filter.title === 'Timeframe') {
filter.options.forEach((obj) => {
obj.selected = false;
});
}
});

如何解决这个问题?

最佳答案

基本上,您是在使用 forEach 修改您的 filterList,请改用 map:


filtersList.map(filter => {
if (filter.title === "Timeframe") {
return {
...filter,
options: filter.options.map(obj => ({ ...obj, selected: false }))
};
}
return filter;
});

关于javascript - 如何修复 "no-param-reassign"eslint 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57199590/

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