Do not access Object.prototype method ‘hasOwnProperty‘ from target object no-prototype-builtins 出错

原来写的代码如下,后来出现以上错误

if(todo.hasOwnProperty.('isEdit')){

        todo.isEdit = true

      }else{

        this.$set(todo,'isEdit',true)

      }

}

解决办法,通过查看一个博主的解决办法是加上call就解决啦

if(todo.hasOwnProperty.call('isEdit')){

        todo.isEdit = true

      }else{

        this.$set(todo,'isEdit',true)

      }

}

你可能感兴趣的:(原型模式)