web-dev-qa-db-ja.com

計算されたプロパティの監視

私は次のハッシュを持つコンポーネントを持っています

{ 
  computed: { 
    isUserID: { 
      get: function(){
         return this.userId? 
      } 
  }
}

isUserIDまたはuserIdの変更を監視する必要がありますか?計算されたプロパティを見ることができますか?

37
Kendall

はい、 watcher on computed プロパティを設定できます。 fiddle を参照してください。

計算されたプロパティに監視を設定するコードは次のとおりです。

const demo = new Vue({
    el: '#demo',

    data() {
        return {
            age: ''
        };
    },

    computed: {
        doubleAge() {
            return 2 * this.age;
        }
    },

    watch: {
        doubleAge(newValue) {
            alert(`yes, computed property changed: ${newValue}`);
        }
    }
});
69
Saurabh
computed: {
  name: {
    get: function(){
      return this.name;
    }
  }
},
watch: {
  name: function(){
    console.log('changed');
  }
}

このように、計算されたプロパティが変更された場合、コンソールで通知されるので、計算されたプロパティを監視できます。

3
David William