ESLint for...in 报错

打印 上一主题 下一主题

主题 813|帖子 813|积分 2441

错误提示:for..in loops iterate over the entire prototype chain, which is virtually never what you want. Use Object.{keys,values,entries}, and iterate over the resulting array.eslintno-restricted-syntaxThe body of a for-in should be wrapped in an if statement to filter unwanted properties from the prototype.eslintguard-for-in 
  1. for(const name in nameSet) {
  2. //code
  3. }
复制代码
将上述for...in循环改成
  1. Object.key(nameSet).forEach((name) => {
  2.        //code
  3. })
复制代码
错误消失

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

刘俊凯

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表