search
HomeWeb Front-endVue.jsLearn about watchEffect in Vue3 in one article and talk about its application scenarios!

This article will take you to understand watchEffect in Vue3, introduce its side effects, and talk about what it can do. I hope it will be helpful to everyone!

Learn about watchEffect in Vue3 in one article and talk about its application scenarios!

watchEffect, which immediately executes a function passed in while reactively tracking its dependencies and re-running the function when its dependencies change. (Learning video sharing: vue video tutorial)

In other words: watchEffect is equivalent to merging the dependency source and callback function of watch, This callback function is re-executed when any of your reactive dependencies are updated. Different from watch, the callback function of watchEffect will be executed immediately (i.e. { immediate: true })

This article mainly describes how to use Clear side effectsMake our code more elegant~

watchEffect's side effects

What are side effects (side effect), Simply put, a side effect is to perform a certain operation, such as modification of external variable data or variables, call of external interface, etc. The callback function of watchEffect is a side effect function, because we use watchEffect to perform certain operations after listening to changes in dependencies.

When a side effect function is executed, it will inevitably have some impact on the system. For example, a timer setInterval is executed in the side effect function, so we must deal with the side effects. Vue3watchEffectThe function that listens for side effects can receive an onInvalidate function as an input parameter to register a callback when the cleanup fails. This invalidation callback will be triggered when the following situations occur:

  • The side effect is about to be re-executed (that is, the value of the dependency changes)
  • The listener is stopped (returned by the explicit call The value stops listening, or the component is uninstalled and the stop listening is called implicitly)
import { watchEffect, ref } from 'vue'

const count = ref(0)
watchEffect((onInvalidate) => {
  console.log(count.value)
  onInvalidate(() => {
    console.log('执行了onInvalidate')
  })
})

setTimeout(()=> {
  count.value++
}, 1000)

The order in which the above code is printed is: 0 -> Executed onInvalidate, and finally execute -> 1

Analysis: During initialization, the value of count is first printed 0, and then due to the timer Update the value of count to 1. At this time, the side effect will be executed again, so the callback function of onInvalidate will be triggered and executed onInvalidate# will be printed. ##, and then executes the side effect function and prints the value 1 of count.

import { watchEffect, ref } from 'vue'

const count = ref(0)
const stop = watchEffect((onInvalidate) => {
  console.log(count.value)
  onInvalidate(() => {
    console.log('执行了onInvalidate')
  })
})

setTimeout(()=> {
  stop()
}, 1000)

The above code: When we display the

stop function to stop listening, the onInvalidate callback function will also be triggered. Similarly, when the component where watchEffect is located will implicitly call the stop function to stop listening, so the callback of onInvalidate can also be triggered. function.

watchEffect application

Using the non-lazy execution of

watchEffect and the passed in onInvalidate function, we can do What happened?

Scenario 1: Usually we define a timer or listen for an event. We need to define or register it in the mounted life cycle hook function, and then the component is destroyed Previously, the timer was cleared or the listening function was cleared in the beforeUnmount hook function. In this way, our logic is scattered in two life cycles, which is not conducive to maintenance and reading.

If I use

watchEffect, the creation and destruction logic are put together, and the code is more elegant and easy to read~

// 定时器注册和销毁
watchEffect((onInvalidate) => {
  const timer = setInterval(()=> {
    // ...
  }, 1000)
  onInvalidate(() => clearInterval(timer))
})

const handleClick = () => {
 // ...
}
// dom的监听和取消监听
onMounted(()=>{
  watchEffect((onInvalidate) => {
    document.querySelector('.btn').addEventListener('click', handleClick, false)
    onInvalidate(() => document.querySelector('.btn').removeEventListener('click', handleClick))
  })
})

Scenario 2: Use watchEffect to make an anti-shake throttling (such as canceling a request)

const id = ref(13)
watchEffect(onInvalidate => {
   // 异步请求
  const token = performAsyncOperation(id.value)
  // 如果id频繁改变,会触发失效函数,取消之前的接口请求
  onInvalidate(() => {
    // id has changed or watcher is stopped.
    // invalidate previously pending async operation
    token.cancel()
  })
})

......

Of course

watchEffect can also do many things, such as opening a modification In the modal pop-up window, if a change in id is detected, we can reset the initial parameters in the onInvalidate function... This is just an introduction, I hope everyone will discover more~

(Learning video sharing:

web front-end development, Basic programming video)

The above is the detailed content of Learn about watchEffect in Vue3 in one article and talk about its application scenarios!. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:掘金社区. If there is any infringement, please contact admin@php.cn delete
Vue常见面试题汇总(附答案解析)Vue常见面试题汇总(附答案解析)Apr 08, 2021 pm 07:54 PM

本篇文章给大家分享一些Vue面试题(附答案解析)。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

5 款适合国内使用的 Vue 移动端 UI 组件库5 款适合国内使用的 Vue 移动端 UI 组件库May 05, 2022 pm 09:11 PM

本篇文章给大家分享5 款适合国内使用的 Vue 移动端 UI 组件库,希望对大家有所帮助!

vue中props可以传递函数吗vue中props可以传递函数吗Jun 16, 2022 am 10:39 AM

vue中props可以传递函数;vue中可以将字符串、数组、数字和对象作为props传递,props主要用于组件的传值,目的为了接收外面传过来的数据,语法为“export default {methods: {myFunction() {// ...}}};”。

手把手带你利用vue3.x绘制流程图手把手带你利用vue3.x绘制流程图Jun 08, 2022 am 11:57 AM

利用vue3.x怎么绘制流程图?下面本篇文章给大家分享基于 vue3.x 的流程图绘制方法,希望对大家有所帮助!

聊聊vue指令中的修饰符,常用事件修饰符总结聊聊vue指令中的修饰符,常用事件修饰符总结May 09, 2022 am 11:07 AM

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何覆盖组件库样式?React和Vue项目的解决方法浅析如何覆盖组件库样式?React和Vue项目的解决方法浅析May 16, 2022 am 11:15 AM

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!

通过9个Vue3 组件库,看看聊前端的流行趋势!通过9个Vue3 组件库,看看聊前端的流行趋势!May 07, 2022 am 11:31 AM

本篇文章给大家分享9个开源的 Vue3 组件库,通过它们聊聊发现的前端的流行趋势,希望对大家有所帮助!

react与vue的虚拟dom有什么区别react与vue的虚拟dom有什么区别Apr 22, 2022 am 11:11 AM

react与vue的虚拟dom没有区别;react和vue的虚拟dom都是用js对象来模拟真实DOM,用虚拟DOM的diff来最小化更新真实DOM,可以减小不必要的性能损耗,按颗粒度分为不同的类型比较同层级dom节点,进行增、删、移的操作。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment