箭头函数参数周围应有圆括号。(箭头-括号)
如何避免ES7
箭头函数出现流类型错误
handleSelectCategory = (e) => {
const { form } = this.state;
let newCategories = [];
if (form.categories.findIndex((c) => c.value === e.value) >= 0) {
newCategories = form.categories.filter((c) => c.value !== e.value);
} else {
newCategories = [...form.categories, e];
}
this.setState({
form: Object.assign({}, form, { categories: newCategories }),
});
};
我收到警告
Expected parentheses around arrow function argument. (arrow-parens)
解决方案
在ES6中,当只有一个参数时,箭头函数的参数周围的圆括号是可选的,但ESLint在默认情况下会对此进行投诉。这由arrow-parens选项控制。
更改此选项或更改箭头函数以使用(c)
而不是c
作为参数列表。
相关文章