介尘部落

文学|音乐|休闲娱乐|计算机技术|地球科学|社会学——知识成就命运


vue中的this指向undefined的问题,mounted钩子函数通过this没能获取到data里定义的key/value

血的教训

钩子函数的定义形式,第一种形式和第三种形式 是正确的,写成其它形式会导致 this 指向有误,引起一系列问题。。。

// 第一种形式
mounted(){
  // do something
}
 
//第二种形式
mounted:()=>{
  // do something
}
 
//第三种种形式
mounted:function(){
  // do something
}
阅读全文
公众号-介尘阅读时光
赞赏支持
,发布于 2021-04-06 17:56

0 Responses to “vue中的this指向undefined的问题,mounted钩子函数通过this没能获取到data里定义的key/value”

Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)

×