我有一个代码:
renderList = () => {
const result = this.props.searchResult;
const liArray = [];
forEach({ a: 1, b: 2 }, (value, key) => {
liArray.push(<li>hello</li>);
});
return (
<ul className="text-muted m-0 p-0">{liArray}</ul>
);
}
eslint给出了错误:
[eslint]不允许使用不规则的空格。 (无不规则空白)。
此错误在forEach循环中。请帮忙。
答案 0 :(得分:0)
您可能已复制/粘贴了一些无效的空白字符。只需删除空格并手动输入即可。