美文网首页
Vue侦听器watch获取this报undefined

Vue侦听器watch获取this报undefined

作者: MuRongXDB | 来源:发表于2020-01-08 11:38 被阅读0次

    错误代码

    watch: {
      data: {
        handler: (newVal) => {
          this.info = newVal
        },
        deep: true
      }
    },
    

    修正后代码

    watch: {
      data: {
        handler: function (newVal) {
          this.info = newVal
        },
        deep: true
      }
    },
    

    原因

    总的来说还是this指向问题,可以查看普通函数与箭头函数this指向问题

    原文链接:https://www.imuboy.cn/

    相关文章

      网友评论

          本文标题:Vue侦听器watch获取this报undefined

          本文链接:https://www.haomeiwen.com/subject/omojactx.html