首页 > 解决方案 > eslint 显示意外使用逗号,数组的无序列

问题描述

我有以下代码,并且 eslint 不断显示no-sequences警告。

const full = {};

["firstname", "lastname", "spouse"].forEach(key => {
})

["cellphone", "phone"].forEach(key => {
})

虽然错误出现在第二个forEach块上,但只有在我放置第一个forEach块时才会出现警告。这是一个 eslint 错误吗?

是 eslint 演示编辑器上的链接

标签: javascripteslint

解决方案


由于您的代码没有分号,因此您基本上是在尝试访问第一个数组forEach

["firstname", "lastname", "spouse"].forEach(key => {
})["cellphone", "phone"].forEach(key => {
})

当然,这是不正确的。要解决此问题,只需添加一个分号:

["firstname", "lastname", "spouse"].forEach(key => {
}); // Add a semicolon here

["cellphone", "phone"].forEach(key => {
}); // Here it is not necessary, but it is a good practice to avoid that kind of error

这将修复错误,因为分号指出语句的结尾,因此 ESLint 将能够理解有两个不同的语句。


推荐阅读