中等Vue
0 1

在Vue中使用this 时应该注意哪些问题?

【概念释义】

Vue 2 this 指向组件实例(data/methods/$refs/$emit)。注意:箭头函数作 methods 无组件 this;回调需 bind/箭头;解构 methods 丢 this;beforeCreate 未完全初始化;严格模式函数 this 仍由 Vue 绑定调用。

【基础使用】

javascript
methods: {
  ok() { this.count++; },
  bad: () => { this.count++; }, "qb-hl-comment">// undefined this
  fetch() {
    api.get().

登录查看完整 744

回答讨论

暂无讨论,登录后可抢先发言

本题库更多题目(50)