最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - how to use Vue watch in objects - Stack Overflow

programmeradmin2浏览0评论

I am pretty new to watch and trying to figure out why my watch isn't triggering when accessing it as an object. I saw this thread, but it isn't clear to me if my problem is the same. Following is my simplified example (full example got more properties and properties with array

<div id="app">
  <input type="text" v-model.lazy="userInfo.name"> {{userInfo.name}}
</div>

JS

new Vue({
  el: "#app",
  data: {
  userInfo: {
            name: ''
  }

  },
  methods: {

  },
  watch: {
    userInfo : {
            name(oldVal, newVal){
            console.log(oldVal +" " + newVal)
      },
    },
     deep: true
  }
})

Link to the JSFiddle

I am pretty new to watch and trying to figure out why my watch isn't triggering when accessing it as an object. I saw this thread, but it isn't clear to me if my problem is the same. Following is my simplified example (full example got more properties and properties with array

<div id="app">
  <input type="text" v-model.lazy="userInfo.name"> {{userInfo.name}}
</div>

JS

new Vue({
  el: "#app",
  data: {
  userInfo: {
            name: ''
  }

  },
  methods: {

  },
  watch: {
    userInfo : {
            name(oldVal, newVal){
            console.log(oldVal +" " + newVal)
      },
    },
     deep: true
  }
})

Link to the JSFiddle

Share Improve this question edited Feb 28, 2019 at 11:56 localhost asked Feb 28, 2019 at 11:49 localhostlocalhost 8714 gold badges27 silver badges58 bronze badges 4
  • 2 vuejs/v2/api/#watch – str Commented Feb 28, 2019 at 12:01
  • Possible duplicate of Vue.js - How to properly watch for nested data – Vucko Commented Feb 28, 2019 at 12:06
  • Change the watcher to something like this ` watch: { 'userInfo.name' : function(oldVal, newVal){ console.log(oldVal +" " + newVal); }, deep: true }` – Majid Commented Feb 28, 2019 at 12:19
  • thanks @Majid . It make good sense then docs. If u want Put it as answer and I will accept the answer. If possible, can u break down what it says in docs as it is hard to understand [vuejs/v2/api/#watch](watch) – localhost Commented Feb 28, 2019 at 12:22
Add a ment  | 

2 Answers 2

Reset to default 5

Change the watcher to something like this:

new Vue({
  el: "#app",
  data: {
    userInfo: {
      name: "null"
    }
  },
  methods: {},
  watch: {
    "userInfo.name": function(oldVal, newVal) {
      console.log(oldVal + " " + newVal);
    }
  }
});

Refer to the documentation for the same here. Check the last example.

Here is a short example in your case:

new Vue({
  el: "#app",
  data: {
  userInfo: {
       name: 'null'
    }
  },
  puted: {
    name() {
      return this.userInfo.name;
    }
  },
  methods: {

  },
  watch: {
    name(newVal, oldVal) {
      alert(newVal);
      alert(oldVal);
    }
  },
})
发布评论

评论列表(0)

  1. 暂无评论