[TOC]
>[success] # watch 和 watchEffect 的使用和差异性
我们讲一下在 **composition API** 中如何来使用 **watch** 和 **watchEffect**
>[success] ## watch 使用方法
1. **监听基本数据**
**index.html**
~~~
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>watch 和 watchEffect 的使用和差异性</title>
<!-- 通过cdn方式引入vue -->
<script src="https://unpkg.com/vue@next"></script>
</head>
<body>
<div id="root"></div>
</body>
<script>
// watch 侦听器
const app = Vue.createApp({
setup(){
const { ref, watch } = Vue
// 定义name属性
const name = ref('dell')
// 监听name属性
// 具备一定的惰性 lazy
// 参数可以拿到原始和当前值
watch(name, (currentValue, prevValue) => {
console.log(currentValue, prevValue)
})
return { name }
},
template: `
<div>
<div>
Name: <input v-model="name">
</div>
<div>
Name is {{ name }}
</div>
</div>
`
})
const vm = app.mount('#root')
</script>
</html>
~~~
2. **监听对象或数组**
1. **错误写法示范**
如果 **监听** 的是一个 **reactive** 这样的数据, **watch** 的 **第 1 个参数** 就 **不可以** 像下面这样写:
**index.html**
~~~
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>watch 和 watchEffect 的使用和差异性</title>
<!-- 通过cdn方式引入vue -->
<script src="https://unpkg.com/vue@next"></script>
</head>
<body>
<div id="root"></div>
</body>
<script>
// watch 侦听器
const app = Vue.createApp({
setup(){
const { reactive, watch, toRefs } = Vue
const nameObj = reactive({ name: 'dell' })
// 具备一定的惰性 lazy
// 参数可以拿到原始和当前值
watch(nameObj.name, (currentValue, prevValue) => {
console.log(currentValue, prevValue)
})
const { name } = toRefs(nameObj)
return { name }
},
template: `
<div>
<div>
Name: <input v-model="name">
</div>
<div>
Name is {{ name }}
</div>
</div>
`
})
const vm = app.mount('#root')
</script>
</html>
~~~
2. **正确写法示范**
监听 **reactive** 这样的数据,**watch** 的第一个参数,要用 **箭头函数** 的形式
~~~
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>watch 和 watchEffect 的使用和差异性</title>
<!-- 通过cdn方式引入vue -->
<script src="https://unpkg.com/vue@next"></script>
</head>
<body>
<div id="root"></div>
</body>
<script>
// watch 侦听器
const app = Vue.createApp({
setup(){
const { reactive, watch, toRefs } = Vue
const nameObj = reactive({ name: 'dell' })
// 具备一定的惰性 lazy
// 参数可以拿到原始和当前值
watch(() => nameObj.name, (currentValue, prevValue) => {
console.log(currentValue, prevValue)
})
const { name } = toRefs(nameObj)
return { name }
},
template: `
<div>
<div>
Name: <input v-model="name">
</div>
<div>
Name is {{ name }}
</div>
</div>
`
})
const vm = app.mount('#root')
</script>
</html>
~~~
3. **监听多个数据**
像下面这个代码中,想要 **同时监听 2 个数据** 就要写 **2 次 watch**
**index.html**
~~~
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>watch 和 watchEffect 的使用和差异性</title>
<!-- 通过cdn方式引入vue -->
<script src="https://unpkg.com/vue@next"></script>
</head>
<body>
<div id="root"></div>
</body>
<script>
// watch 侦听器
const app = Vue.createApp({
setup(){
const { reactive, watch, toRefs } = Vue
// 定义变量
const nameObj = reactive({
name: 'dell', englishName: 'lee'
})
// 监听 nameObj.name
watch(() => nameObj.name, (currentValue, prevValue) => {
console.log(currentValue, prevValue)
})
// 监听 nameObj.englishName
watch(() => nameObj.englishName, (currentValue, prevValue) => {
console.log(currentValue, prevValue)
})
// 解构取值
const { name, englishName } = toRefs(nameObj)
return { name, englishName }
},
template: `
<div>
<div>
Name: <input v-model="name">
</div>
<div>
Name is {{ name }}
</div>
<div>
EnglishName: <input v-model="englishName">
</div>
<div>
EnglishName is {{ englishName }}
</div>
</div>
`
})
const vm = app.mount('#root')
</script>
</html>
~~~
上面的代码就会 **显得特别麻烦,重复性的代码写了多次** ,那我们可以这样写,把 **它们俩写在一起监听** ,在 **watch 里可以接收一个数组** ,它的意思就是 **这个数组中不管哪个值发生变化,我都会执行后面的函数,同样后面函数的参数也必须是数组的形式**
**index.html**
~~~
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>watch 和 watchEffect 的使用和差异性</title>
<!-- 通过cdn方式引入vue -->
<script src="https://unpkg.com/vue@next"></script>
</head>
<body>
<div id="root"></div>
</body>
<script>
// watch 侦听器
const app = Vue.createApp({
setup(){
const { reactive, watch, toRefs } = Vue
// 定义变量
const nameObj = reactive({
name: 'dell', englishName: 'lee'
})
// 监听 nameObj.name
watch([() => nameObj.name, () => nameObj.englishName], ([curName, curEng],[preName, preEng]) => {
console.log(curName, preName, '---', curEng, preEng)
})
// 解构取值
const { name, englishName } = toRefs(nameObj)
return { name, englishName }
},
template: `
<div>
<div>
Name: <input v-model="name">
</div>
<div>
Name is {{ name }}
</div>
<div>
EnglishName: <input v-model="englishName">
</div>
<div>
EnglishName is {{ englishName }}
</div>
</div>
`
})
const vm = app.mount('#root')
</script>
</html>
~~~
4. **初始化执行一次监听**
**watch** 也可以 **默认执行一次监听** , **watch** 的 **第 2 个参数** 是个 **对象** ,可以在里面进行 **配置 immediate: true** 即可,代码如下:
**index.html**
~~~
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>watch 和 watchEffect 的使用和差异性</title>
<!-- 通过cdn方式引入vue -->
<script src="https://unpkg.com/vue@next"></script>
</head>
<body>
<div id="root"></div>
</body>
<script>
// watch 侦听器
const app = Vue.createApp({
setup(){
const { reactive, watch, watchEffect, toRefs } = Vue
// 定义变量
const nameObj = reactive({
name: 'dell', englishName: 'lee'
})
// 监听 nameObj.name
watch([() => nameObj.name, () => nameObj.englishName], ([curName, curEng],[preName, preEng]) => {
console.log('watch', curName, preName, '---', curEng, preEng)
}, {
immediate: true
})
// 解构取值
const { name, englishName } = toRefs(nameObj)
return { name, englishName }
},
template: `
<div>
<div>
Name: <input v-model="name">
</div>
<div>
Name is {{ name }}
</div>
<div>
EnglishName: <input v-model="englishName">
</div>
<div>
EnglishName is {{ englishName }}
</div>
</div>
`
})
const vm = app.mount('#root')
</script>
</html>
~~~
>[success] ## watchEffect 使用方法
传统的 **vue2.x 版本 watch** 想实现 **默认执行一次监听** ,就要写 **immediate: true** ,如下:
**index.html**
~~~
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>watch 和 watchEffect 的使用和差异性</title>
<!-- 通过cdn方式引入vue -->
<script src="https://unpkg.com/vue@next"></script>
</head>
<body>
<div id="root"></div>
</body>
<script>
// watch 侦听器
const app = Vue.createApp({
data(){
return {
nameObj: {
name: 'dell',
englishName: 'lee'
}
}
},
watch: {
'nameObj.name' : {
immediate: true,
handler: function (oldValue, newValue) {
console.log(oldValue,)
}
}
},
template: `
<div>
<div>
Name: <input v-model="nameObj.name">
</div>
<div>
Name is {{ nameObj.name }}
</div>
<div>
EnglishName: <input v-model="nameObj.englishName">
</div>
<div>
EnglishName is {{ nameObj.englishName }}
</div>
</div>
`
})
const vm = app.mount('#root')
</script>
</html>
~~~
而新版 **composition API** 的 **watchEffect 方法,初始化就会执行一次** , 它会 **自动检测方法内部使用的代码是否有变化** ,而且 **不需要传递你要侦听的内容,它会自动感知内容变化,缺点:无法获取之前或当前的数据**
**index.html**
~~~
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>watch 和 watchEffect 的使用和差异性</title>
<!-- 通过cdn方式引入vue -->
<script src="https://unpkg.com/vue@next"></script>
</head>
<body>
<div id="root"></div>
</body>
<script>
// watch 侦听器
// watchEffect 侦听器,偏向于 effect
const app = Vue.createApp({
setup(){
const { reactive, watch, watchEffect, toRefs } = Vue
// 定义变量
const nameObj = reactive({
name: 'dell', englishName: 'lee'
})
// 监听 nameObj.name
// watch([() => nameObj.name, () => nameObj.englishName], ([curName, curEng],[preName, preEng]) => {
// console.log('watch', curName, preName, '---', curEng, preEng)
// })
// 立即执行,没有惰性 immediate
// 不需要传递你要侦听的内容,自动会感知代码依赖,不需要传递很多参数,只要传递一个回调函数
// 不能获取之前数据的值
watchEffect(() => {
console.log(nameObj.name)
})
// 解构取值
const { name, englishName } = toRefs(nameObj)
return { name, englishName }
},
template: `
<div>
<div>
Name: <input v-model="name">
</div>
<div>
Name is {{ name }}
</div>
<div>
EnglishName: <input v-model="englishName">
</div>
<div>
EnglishName is {{ englishName }}
</div>
</div>
`
})
const vm = app.mount('#root')
</script>
</html>
~~~
>[success] ## 结束 watch 或 watchEffect 监听
假如我有这样一个需求想 **2s** 后 **结束监听** ,可以用 **变量或者常量** 把 **watch 或 watchEffect** 储存起来,然后 **2s 后执行一下这个变量的方法即可结束监听**,具体代码如下:
~~~
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>watch 和 watchEffect 的使用和差异性</title>
<!-- 通过cdn方式引入vue -->
<script src="https://unpkg.com/vue@next"></script>
</head>
<body>
<div id="root"></div>
</body>
<script>
// watch 侦听器
// watchEffect 侦听器,偏向于 effect
const app = Vue.createApp({
setup(){
const { reactive, watch, watchEffect, toRefs } = Vue
// 定义变量
const nameObj = reactive({
name: 'dell', englishName: 'lee'
})
// 监听 nameObj.name
const stop1 = watch([() => nameObj.name, () => nameObj.englishName], ([curName, curEng],[preName, preEng]) => {
console.log('watch', curName, preName, '---', curEng, preEng)
setTimeout(() => {
stop1() // 结束监听
}, 2000)
})
// 立即执行,没有惰性 immediate
// 不需要传递你要侦听的内容,自动会感知代码依赖,不需要传递很多参数,只要传递一个回调函数
// 不能获取之前数据的值
const stop = watchEffect(() => {
console.log(nameObj.name)
setTimeout(() => {
stop() // 结束监听
}, 2000)
})
// 解构取值
const { name, englishName } = toRefs(nameObj)
return { name, englishName }
},
template: `
<div>
<div>
Name: <input v-model="name">
</div>
<div>
Name is {{ name }}
</div>
<div>
EnglishName: <input v-model="englishName">
</div>
<div>
EnglishName is {{ englishName }}
</div>
</div>
`
})
const vm = app.mount('#root')
</script>
</html>
~~~
- vue 26课
- Vue-cli3.0项目搭建
- Vue-ui 创建cli3.0项目
- Vue-ui 界面详解
- 项目目录详解
- public文件夹
- favicon.ico
- index.html
- src文件夹
- api文件夹
- assets文件夹
- components文件夹
- config文件夹
- directive文件夹
- lib文件夹
- mock文件夹
- mock简明文档
- router文件夹
- store文件夹
- views文件夹
- App.vue
- main.js
- .browserslistrc
- .editorconfig
- .eslintrc.js
- .gitignore
- babel.config.js
- package-lock.json
- package.json
- postcss.config.js
- README.en.md
- README.md
- vue.config.js
- Vue Router
- 路由详解(一)----基础篇
- 路由详解(二)----进阶篇
- Vuex
- Bus
- Vuex-基础-state&getter
- Vuex-基础-mutation&action/module
- Vuex-进阶
- Ajax请求
- 解决跨域问题
- 封装axios
- Mock.js模拟Ajax响应
- 组件封装
- 从数字渐变组件谈第三方JS库使用
- 从SplitPane组件谈Vue中如何【操作】DOM
- 渲染函数和JSX快速掌握
- 递归组件的使用
- 登陆/登出以及JWT认证
- 响应式布局
- 可收缩多级菜单的实现
- vue杂项
- vue递归组件
- vue-cli3.0多环境打包配置
- Vue+Canvas实现图片剪切
- vue3系统入门与项目实战
- Vue语法初探
- 初学编写 HelloWorld 和 Counter
- 编写字符串反转和内容隐藏功能
- 编写TodoList功能了解循环与双向绑定
- 组件概念初探,对 TodoList 进行组件代码拆分
- Vue基础语法
- Vue 中应用和组件的基础概念
- 理解 Vue 中的生命周期函数
- 常用模版语法讲解
- 数据,方法,计算属性和侦听器
- 样式绑定语法
- 条件渲染
- 列表循环渲染
- 事件绑定
- 表单中双向绑定指令的使用
- 探索组件的理念
- 组件的定义及复用性,局部组件和全局组件
- 组件间传值及传值校验
- 单向数据流的理解
- Non-Props 属性是什么
- 父子组件间如何通过事件进行通信
- 组件间双向绑定高级内容
- 使用匿名插槽和具名插槽解决组件内容传递问题
- 作用域插槽
- 动态组件和异步组件
- 基础语法知识点查缺补漏
- Vue 中的动画
- 使用 Vue 实现基础的 CSS 过渡与动画效果
- 使用 transition 标签实现单元素组件的过渡和动画效果
- 组件和元素切换动画的实现
- 列表动画
- 状态动画
- Vue 中的高级语法
- Mixin 混入的基础语法
- 开发实现 Vue 中的自定义指令
- Teleport 传送门功能
- 更加底层的 render 函数
- 插件的定义和使用
- 数据校验插件开发实例
- Composition API
- Setup 函数的使用
- ref,reactive 响应式引用的用法和原理
- toRef 以及 context 参数
- 使用 Composition API 开发TodoList
- computed方法生成计算属性
- watch 和 watchEffect 的使用和差异性
- 生命周期函数的新写法
- Provide,Inject,模版 Ref 的用法
- Vue 项目开发配套工具讲解
- VueCLI 的使用和单文件组件
- 使用单文件组件编写 TodoList
- Vue-Router 路由的理解和使用
- VueX 的语法详解
- CompositionAPI 中如何使用 VueX
- 使用 axios 发送ajax 请求
- Vue3.0(正式版) + TS
- 你好 Typescript: 进入类型的世界
- 什么是 Typescript
- 为什么要学习 Typescript
- 安装 Typescript
- 原始数据类型和 Any 类型
- 数组和元组
- Interface- 接口初探
- 函数
- 类型推论 联合类型和 类型断言
- class - 类 初次见面
- 类和接口 - 完美搭档
- 枚举(Enum)
- 泛型(Generics) 第一部分
- 泛型(Generics) 第二部分 - 约束泛型
- 泛型第三部分 - 泛型在类和接口中的使用
- 类型别名,字面量 和 交叉类型
- 声明文件
- 内置类型
- 总结