您好,登錄后才能下訂單哦!
這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)vue 中watcher的作用是什么,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
watch: { someProp () { // do something } } // 或者 watch: { someProp: { deep: true, handler () { // do something } } }
上面的寫法告訴 vue,我需要監(jiān)聽 someProp 屬性的變化,于是 vue 在內(nèi)部就會(huì)為我們創(chuàng)建一個(gè) watcher 對(duì)象。(限于篇幅,我們不聊 watcher 的具體實(shí)現(xiàn),感興趣的可以直接看源碼 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
上面代碼非常簡(jiǎn)單,我們現(xiàn)在主要關(guān)注 created 鉤子中打印的 this._watchers,如下:
分別展開三個(gè) watcher,觀察每一個(gè) expression,從上到下分別為:
b() { return this.a * 2;? } "a" function () { vm._update(vm._render(), hydrating);? }
上面三個(gè) watcher 代表了三種不同功能的 watcher,我們將其按功能分為三類:
在 watch 中定義的,用于監(jiān)聽屬性變化的 watcher (第二個(gè))
用于 computed 屬性的 watcher (第一個(gè))
用于頁(yè)面更新的 watcher (第三個(gè))
normal-watcher
我們?cè)?watch 中定義的,都屬于這種類型,即只要監(jiān)聽的屬性改變了,都會(huì)觸發(fā)定義好的回調(diào)函數(shù)
computed-watcher
每一個(gè) computed 屬性,最后都會(huì)生成一個(gè)對(duì)應(yīng)的 watcher 對(duì)象,但是這類 watcher 有個(gè)特點(diǎn),我們拿上面的 b 舉例:
屬性 b 依賴 a,當(dāng) a 改變的時(shí)候,b 并不會(huì)立即重新計(jì)算,只有之后其他地方需要讀取 b 的時(shí)候,它才會(huì)真正計(jì)算,即具備 lazy(懶計(jì)算)特性
render-watcher
每一個(gè)組件都會(huì)有一個(gè) render-watcher, function () {? vm._update(vm._render(), hydrating);? }
, 當(dāng) data/computed
中的屬性改變的時(shí)候,會(huì)調(diào)用該 render-watcher 來更新組件的視圖
三種 watcher 的執(zhí)行順序
除了功能上的區(qū)別,這三種 watcher 也有固定的執(zhí)行順序,分別是:
computed-render -> normal-watcher -> render-watcher
這樣安排是有原因的,這樣就能盡可能的保證,在更新組件視圖的時(shí)候,computed 屬性已經(jīng)是最新值了,如果 render-watcher 排在 computed-render 前面,就會(huì)導(dǎo)致頁(yè)面更新的時(shí)候 computed 值為舊數(shù)據(jù)。
下面從一段實(shí)例代碼中看下vue中的watcher
在這個(gè)示例中,使用 watch 選項(xiàng)允許我們執(zhí)行異步操作(訪問一個(gè) API),限制我們執(zhí)行該操作的頻率,并在我們得到最終結(jié)果前,設(shè)置中間狀態(tài)。這是計(jì)算屬性無(wú)法做到的。
<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 發(fā)生改變,這個(gè)函數(shù)就會(huì)運(yùn)行 question: function (newQuestion) { this.answer = 'Waiting for you to stop typing...' this.getAnswer() } }, methods: { // _.debounce 是一個(gè)通過 lodash 限制操作頻率的函數(shù)。 // 在這個(gè)例子中,我們希望限制訪問yesno.wtf/api的頻率 // ajax請(qǐng)求直到用戶輸入完畢才會(huì)發(fā)出 // 學(xué)習(xí)更多關(guān)于 _.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 }) }, // 這是我們?yōu)橛脩敉V馆斎氲却暮撩霐?shù) 500 ) } }) </script>
上述就是小編為大家分享的vue 中watcher的作用是什么了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。