vue3中watch和watchEffect實戰梳理

前言

watchwatchEffect都是vue3中的監聽器,但是在寫法和使用上是有區別的,這篇文章主要是介紹一下watchwatchEffect的使用方法以及他們之間的區別。

watch

watch監聽單個數據

<template>
    <input type="text" v-model="text1" />
</template>

<script setup>
import { ref, watch } from 'vue'
const text1 = ref('')

watch(text1, (newVal, oldVal) => {
    console.log('監聽單個數據', newVal, oldVal)
})
</script>

結果:

watch監聽多個數據

<template>
    <input type="text" v-model="text1" />
    <input type="text" v-model="text2" />
</template>

<script setup>
import { ref, watch } from 'vue'
const text1 = ref('')
const text2 = ref('')

watch([text1, text2], (newVal, oldVal) => {
    console.log('監聽一組數據', newVal, oldVal)
})
</script>

結果:

watch監聽對象

<template>
    name: <input type="text" v-model="student.name" />
    age: <input type="number" v-model="student.age" />
</template>
<script setup>
import { reactive, watch } from 'vue'
const student = reactive({
    name: '',
    age: ''
})
watch(student, (newVal, oldVal) => {
    console.log('newVal', newVal)
    console.log('oldVal', newVal)
})
</script>

結果:

 watch還有第三個參數,deepimmediate,可以加上看看效果

watch監聽對象的某一個值

<template>
    name: <input type="text" v-model="student.name" />
    age: <input type="number" v-model="student.age" />
</template>
<script lang="ts" setup>
import { reactive, watch } from 'vue'
const student = reactive({
    name: '',
    age: ''
})
watch(() => student.name, (newVal, oldVal) => {
    console.log('newVal', newVal)
    console.log('oldVal', newVal)
}, {
    deep: true,
    immediate: true
})
</script>

監聽對象某一個屬性的時候需要用箭頭函數 結果: 

watchEffect

關於watchEffect,官網是這麼介紹的:為瞭根據響應式狀態自動應用和重新應用副作用,我們可以使用watchEffect方法,它立即執行傳入的一個函數,同時響應式追蹤其依賴,並在其依賴變更時重新運行該函數。 也就是說,我們並不需要傳入一個特定的依賴源,而且它會立即執行一遍回調函數,如果函數產生瞭副作用,那它就會自動追蹤副作用的依賴關系,自動分析出響應源。光看概念可能比較模糊,先來看個最簡單的例子:

<template>
    name: <input type="text" v-model="student.name" />
    age: <input type="number" v-model="student.age" />
</template>

<script lang="ts" setup>
import { reactive, watchEffect } from 'vue'

const student = reactive({
    name: '',
    age: ''
})
watchEffect(() => {
    console.log('name: ',student.name, 'age: ', student.age)
})
</script>

結果:

watchEffect副作用

副作用,那什麼是副作用呢,其實很簡單,就是在監聽之前,我得做一件事。

<template>
    name: <input type="text" v-model="student.name" />
    age: <input type="number" v-model="student.age" />

    <h2>{{student.name}}</h2>
</template>

<script lang="ts" setup>
import { reactive, watchEffect } from 'vue'

const student = reactive({
    name: '',
    age: ''
})
watchEffect((oninvalidate) => {
    oninvalidate(() => {
        student.name = '張三'
    })
    console.log('name: ', student.name)
}, {
    // pre 組件更新前; sync:強制效果始終同步; post:組件更新後執行
    flush: 'post'  // dom加載完畢後執行
})
</script>

監聽之前讓student.name賦值為'張三',無論你輸入什麼值,name一直都是'張三'

停止監聽

我們用同步語句創建的監聽器,會自動綁定到組件實例上,並且會在組件卸載時自動停止,但是,如果我們在異步回調裡創建一個監聽器,那它就不會綁定到當前組件上,必須手動去停止,防止內存泄漏。 那怎麼去停止呢,其實我們隻需要調用一下watchwatchEffect返回的函數

const stop = watchEffect(() => {})

// 停止監聽
unwatch()

區別

用瞭一遍watchwatchEffect之後,發現他倆主要有以下幾點區別:

  • watch是惰性執行的,而watchEffect不是,不考慮watch第三個配置參數的情況下,watch在組件第一次執行的時候是不會執行的,隻有在之後依賴項變化的時候再執行,而watchEffect是在程序執行到此處的時候就會立即執行,而後再響應其依賴變化執行。
  • watch需要傳遞監聽的對象,watchEffect不需要

到此這篇關於vue3中watch和watchEffect實戰梳理的文章就介紹到這瞭,更多相關vue watch和watchEffect 內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: