您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關vue 中watcher的作用是什么,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
watch: { someProp () { // do something } } // 或者 watch: { someProp: { deep: true, handler () { // do something } } }
上面的寫法告訴 vue,我需要監聽 someProp 屬性的變化,于是 vue 在內部就會為我們創建一個 watcher 對象。(限于篇幅,我們不聊 watcher 的具體實現,感興趣的可以直接看源碼 watcher)
然而在 vue 中,watcher 的功能并沒有這么單一,先上段代碼:
<template> <div> <p>a: {{ a }}</p> <p>b: {{ b }}</p> <button @click="increment">+</button> </div> </template> <script> export default { data () { return { a: 1 } }, computed: { b () { return this.a * 2 } }, watch: { a () { console.log('a is changed') } }, methods: { increment () { this.a += 1 } }, created () { console.log(this._watchers) } } </script>
在線demo
上面代碼非常簡單,我們現在主要關注 created 鉤子中打印的 this._watchers,如下:
分別展開三個 watcher,觀察每一個 expression,從上到下分別為:
b() { return this.a * 2;? } "a" function () { vm._update(vm._render(), hydrating);? }
上面三個 watcher 代表了三種不同功能的 watcher,我們將其按功能分為三類:
在 watch 中定義的,用于監聽屬性變化的 watcher (第二個)
用于 computed 屬性的 watcher (第一個)
用于頁面更新的 watcher (第三個)
normal-watcher
我們在 watch 中定義的,都屬于這種類型,即只要監聽的屬性改變了,都會觸發定義好的回調函數
computed-watcher
每一個 computed 屬性,最后都會生成一個對應的 watcher 對象,但是這類 watcher 有個特點,我們拿上面的 b 舉例:
屬性 b 依賴 a,當 a 改變的時候,b 并不會立即重新計算,只有之后其他地方需要讀取 b 的時候,它才會真正計算,即具備 lazy(懶計算)特性
render-watcher
每一個組件都會有一個 render-watcher, function () {? vm._update(vm._render(), hydrating);? }
, 當 data/computed
中的屬性改變的時候,會調用該 render-watcher 來更新組件的視圖
三種 watcher 的執行順序
除了功能上的區別,這三種 watcher 也有固定的執行順序,分別是:
computed-render -> normal-watcher -> render-watcher
這樣安排是有原因的,這樣就能盡可能的保證,在更新組件視圖的時候,computed 屬性已經是最新值了,如果 render-watcher 排在 computed-render 前面,就會導致頁面更新的時候 computed 值為舊數據。
下面從一段實例代碼中看下vue中的watcher
在這個示例中,使用 watch 選項允許我們執行異步操作(訪問一個 API),限制我們執行該操作的頻率,并在我們得到最終結果前,設置中間狀態。這是計算屬性無法做到的。
<div id="watch-example"> <p> Ask a yes/no question: <input v-model="question"> </p> <p>{{ answer }}</p> </div> <!-- Since there is already a rich ecosystem of ajax libraries --> <!-- and collections of general-purpose utility methods, Vue core --> <!-- is able to remain small by not reinventing them. This also --> <!-- gives you the freedom to just use what you're familiar with. --> <script src="https://unpkg.com/axios@0.12.0/dist/axios.min.js"></script> <script src="https://unpkg.com/lodash@4.13.1/lodash.min.js"></script> <script> var watchExampleVM = new Vue({ el: '#watch-example', data: { question: '', answer: 'I cannot give you an answer until you ask a question!' }, watch: { // 如果 question 發生改變,這個函數就會運行 question: function (newQuestion) { this.answer = 'Waiting for you to stop typing...' this.getAnswer() } }, methods: { // _.debounce 是一個通過 lodash 限制操作頻率的函數。 // 在這個例子中,我們希望限制訪問yesno.wtf/api的頻率 // ajax請求直到用戶輸入完畢才會發出 // 學習更多關于 _.debounce function (and its cousin // _.throttle), 參考: https://lodash.com/docs#debounce getAnswer: _.debounce( function () { var vm = this if (this.question.indexOf('?') === -1) { vm.answer = 'Questions usually contain a question mark. ;-)' return } vm.answer = 'Thinking...' axios.get('https://yesno.wtf/api') .then(function (response) { vm.answer = _.capitalize(response.data.answer) }) .catch(function (error) { vm.answer = 'Error! Could not reach the API. ' + error }) }, // 這是我們為用戶停止輸入等待的毫秒數 500 ) } }) </script>
上述就是小編為大家分享的vue 中watcher的作用是什么了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。