新手奇葩使用vue, 发现一个bug?
奇葩使用 this.$options.methods.abc() 而非 this.abc() 有什么道理吗?
data() { return {
list : []
}
}
methods: {
abc(){
this.list=[1,2,3]
}
}
created(){
this.$options.methods.abc() //这样调用 abc方法, list 数据在页面上不响应改变。
}
回答:
两个this不一样
回答:
this 变了。
回答:
????!!
什么bug,没懂说的什么意思,调用方法不就是this.abc()
以上是 新手奇葩使用vue, 发现一个bug? 的全部内容, 来源链接: utcz.com/p/935568.html