其他分享
首页 > 其他分享> > [vue-cli]直接使用hasOwnProperty报错

[vue-cli]直接使用hasOwnProperty报错

作者:互联网

学习vue中

出现报错

foo是一个对象,我想要判断它是否带有bar属性。
我原本的写法:

if(foo.hasOwnProperty('bar')){
	//doSomething...
}

但是报错了:

error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins


报错原因

新版本ESlint禁止对象直接调用Object.prototype的方法。

ERROR in [eslint]


解决方法

1. 忽略报错(不推荐)

Use /* eslint-disable */ to ignore all warnings in a file.


2. 修改代码(推荐)

foo.hasOwnProperty('bar')修改为Object.hasOwnProperty.call(foo,'bar')

标签:vue,bar,cli,Object,报错,hasOwnProperty,prototype,foo
来源: https://www.cnblogs.com/feixianxing/p/vue-cli-error-eslint-has-own-property-object-call-pr