watch的用法
1 <div id="watch-example"> 2 <p> 3 Ask a yes/no question: 4 <input v-model="question"> 5 </p> 6 <p>{{ answer }}</p> 7 </div> 8 <!-- 因为 AJAX 库和通用工具的生态已经相当丰富,Vue 核心代码没有重复 --> 9 <!-- 提供这些功能以保持精简。这也可以让你自由选择自己更熟悉的工具。 --> 10 <script src="https://cdn.jsdelivr.net/npm/axios@0.12.0/dist/axios.min.js"></script> 11 <script src="https://cdn.jsdelivr.net/npm/lodash@4.13.1/lodash.min.js"></script> 12 <script> 13 var watchExampleVM = new Vue({ 14 el: '#watch-example', 15 data: { 16 question: '', 17 answer: 'I cannot give you an answer until you ask a question!' 18 }, 19 watch: { 20 // 如果 `question` 发生改变,这个函数就会运行 21 question: function (newQuestion, oldQuestion) { 22 this.answer = 'Waiting for you to stop typing...' 23 this.debouncedGetAnswer() 24 } 25 }, 26 created: function () { 27 // `_.debounce` 是一个通过 Lodash 限制操作频率的函数。 28 // 在这个例子中,我们希望限制访问 yesno.wtf/api 的频率 29 // AJAX 请求直到用户输入完毕才会发出。想要了解更多关于 30 // `_.debounce` 函数 (及其近亲 `_.throttle`) 的知识, 31 // 请参考:https://lodash.com/docs#debounce 32 this.debouncedGetAnswer = _.debounce(this.getAnswer, 500) 33 }, 34 methods: { 35 getAnswer: function () { 36 if (this.question.indexOf('?') === -1) { 37 this.answer = 'Questions usually contain a question mark. ;-)' 38 return 39 } 40 this.answer = 'Thinking...' 41 var vm = this 42 axios.get('https://yesno.wtf/api') 43 .then(function (response) { 44 vm.answer = _.capitalize(response.data.answer) 45 }) 46 .catch(function (error) { 47 vm.answer = 'Error! Could not reach the API. ' + error 48 }) 49 } 50 } 51 }) 52 </script>
PS:1.如果你的v-model为form.name,直接把question改为"form.name"就好了。
2.上面监听的如果是数组或者是对象的时候console.log(newQuestion==oldQuestion)为true,因为这两个形参指向同一个对象
3 https://blog.csdn.net/wandoumm/article/details/80259908 對於watch的见解很深入。