vue3+ts watch 整理

watch() 一共可以接受三个参数,侦听数据源、回调函数和配置选项

作用:监视数据的变化(和Vue2中的watch作用一致)

特点:Vue3中的watch只能监视以下四种数据:

ref定义的数据。
reactive定义的数据。
函数返回一个值(getter函数)。
一个包含上述内容的数组
ref 定义的数据

<template>
  <div>str===={{ str }}</div>
  <div>perosn 的name===={{ personObj.name }}</div>
  <div>Person 的age===={{ personObj.age }}</div>
  <div>Person的Car===={{ personObj.car }}</div>
  <div>Person的Car.color===={{ personObj.car.color }}</div>
  <div>Person的Car.price===={{ personObj.car.price }}</div>
  <div>
    <el-button @click="editPerson">点击修改部分属性</el-button>
    <el-button @click="editPersonAll">点击修改全部</el-button>
    <el-button @click="editString">修改基本数据类型</el-button>
  </div>
</template>

<script setup lang="ts">
import { reactive, watch, ref, toRefs, Ref } from "vue";
interface Person {
  name: string;
  age: number;
  car: {
    price: number;
    color: string;
  };
}
// let str: Ref<string> = ref("AAA"); // 泛型写法
let str = ref("AAA");
let personObj = ref<Person>({
  name: "aaa",
  age: 12,
  car: {
    price: 12,
    color: "reds",
  },
});
const editPerson = () => {
  personObj.value.name = "bbb";
};
const editPersonAll = () => {
  personObj.value.car = {
    price: 222,
    color: "blue",
  };
};

const editString = () => {
  str.value = "Bbb";
};
// 监听基本数据类型变化
watch(
  () => str.value,
  (newValue, oldValue) => {
    console.log("监听基本数据类型变化newValue");
    console.log(newValue);
    console.log(oldValue);
  }
);
// 监听对象类型某个值的变化
watch(
  () => personObj.value.name,
  (newValue, oldValue) => {
    console.log("personObj.value.name");
    console.log("newValue==" + newValue);
    console.log("oldValue==" + oldValue);
  }
);

/* 
    监视,情况一:监视【ref】定义的【对象类型】数据,监视的是对象的地址值,若想监视对象内部属性的变化,需要手动开启深度监视
    watch的第一个参数是:被监视的数据
    watch的第二个参数是:监视的回调
    watch的第三个参数是:配置对象(deep、immediate等等.....) 
  */
watch(
  personObj,
  (newValue, oldValue) => {
    console.log("修改整个车");
    console.log("newValue==");
    let { car, name, age } = toRefs(newValue);
    console.log(car, name.value, age.value);
    console.log("oldValue==");
    // let {car,name,age} = toRefs(oldValue)
    // console.log(car,name,age);
  },
  {
    deep: true,
  }
);
</script>

<style scoped></style>

reactive 定义的数据
ref 写法

<template>
  <div>perosn 的name===={{ personObj.name }}</div>
  <div>Person 的age===={{ personObj.age }}</div>
  <div>Person的Car===={{ personObj.car }}</div>
  <div>Person的Car.color===={{ personObj.car.color }}</div>
  <div>Person的Car.price===={{ personObj.car.price }}</div>
  <div>
    <el-button @click="editPerson">点击修改部分属性</el-button>
    <el-button @click="editPersonAll">点击修改全部</el-button>
  </div>
</template>
<script setup lang="ts">
import { reactive, watch, ref } from "vue";
interface Person {
  name: string;
  age: number;
  car: {
    price: number;
    color: string;
  };
}
let personObj = reactive<Person>({
  name: "aaa",
  age: 12,
  car: {
    price: 12,
    color: "reds",
  },
});
const editPerson = () => {
  personObj.name = "bbb";
};
const editPersonAll = () => {
  personObj.car = {
    price: 222,
    color: "blue",
  };
};
//监听基本数据类型的写法
watch(
  () => personObj.name,
  (newValue, oldValue) => {
    console.log("newValue==" + newValue);
    console.log("oldValue==" + oldValue);
  }
);
监听对象类型的写法 (推荐使用这种方法)
// watch(
//   () => personObj.car,
//   (newValue, oldValue) => {
//     console.log("修改整个车");
//     console.log("newValue==" + newValue);
//     console.log("oldValue==" + oldValue);
//   }
// );
监听对象类型的写法
watch(personObj.car, (newValue, oldValue) => {
  console.log("修改整个车");
  console.log("newValue==" + newValue);
  console.log("oldValue==" + oldValue);
});
</script>

监听多个值变化
ref 写法

<template>
  <div>perosn 的name===={{ personObj.name }}</div>
  <div>Person 的age===={{ personObj.age }}</div>
  <div>Person的Car===={{ personObj.car }}</div>
  <div>Person的Car.color===={{ personObj.car.color }}</div>
  <div>Person的Car.price===={{ personObj.car.price }}</div>
  <div>
    <el-button @click="editPersonName">点击修改name</el-button>
    <el-button @click="editPersonCarColor">点击修改car-color</el-button>
  </div>
</template>

<script setup lang="ts">
import { tr } from "element-plus/es/locales.mjs";
import { reactive, watch, ref, toRefs, Ref } from "vue";
interface Person {
  name: string;
  age: number;
  car: {
    price: number;
    color: string;
  };
}
let personObj = ref<Person>({
  name: "aaa",
  age: 12,
  car: {
    price: 12,
    color: "reds",
  },
});
const editPersonName = () => {
  personObj.value.name = "bbb";
};
const editPersonCarColor = () => {
  personObj.value.car.color = "bule";
};

// 监听对象类型某个值的变化
// 传入的是数组, 获取到的newValue 也是数组,一一对应的关系
watch(
  [() => personObj.value.name, personObj.value.car],
  (newValue, oldValue) => {
    console.log("personObj.value--watch");
    console.log(newValue);
    console.log(oldValue);
  },
  {
    deep: true,
  }
);
</script>

<style scoped></style>

reactive 写法

<template>
  <div>perosn 的name===={{ personObj.name }}</div>
  <div>Person 的age===={{ personObj.age }}</div>
  <div>Person的Car===={{ personObj.car }}</div>
  <div>Person的Car.color===={{ personObj.car.color }}</div>
  <div>Person的Car.price===={{ personObj.car.price }}</div>
  <div>
    <el-button @click="editPersonName">点击修改name</el-button>
    <el-button @click="editPersonCarColor">点击修改car-color</el-button>
  </div>
</template>

<script setup lang="ts">
import { tr } from "element-plus/es/locales.mjs";
import { reactive, watch, ref, toRefs, Ref } from "vue";
interface Person {
  name: string;
  age: number;
  car: {
    price: number;
    color: string;
  };
}
let personObj = reactive<Person>({
  name: "aaa",
  age: 12,
  car: {
    price: 12,
    color: "reds",
  },
});
const editPersonName = () => {
  personObj.name = "bbb";
};
const editPersonCarColor = () => {
  personObj.car.color = "bule";
};

// 监听对象类型某个值的变化
// 传入的是数组, 获取到的newValue 也是数组,一一对应的关系
watch(
  [() => personObj.name, personObj.car],
  (newValue, oldValue) => {
    console.log("personObj.value--watch");
    console.log(newValue);
    console.log(oldValue);
  },
  {
    deep: true,
  }
);
</script>

<style scoped></style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/957351.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

c++ 与 Matlab 程序的数据比对

文章目录 背景环境数据保存数据加载 背景 ***避免数据精度误差&#xff0c;快速对比变量 *** 环境 c下载 https://github.com/BlueBrain/HighFive 以及hdf5库 在vs 中配置库 数据保存 #include <highfive/highfive.hpp> using namespace HighFive;std::string fil…

Java基础——概念和常识(语言特点、JVM、JDK、JRE、AOT/JIT等介绍)

我是一个计算机专业研0的学生卡蒙Camel&#x1f42b;&#x1f42b;&#x1f42b;&#xff08;刚保研&#xff09; 记录每天学习过程&#xff08;主要学习Java、python、人工智能&#xff09;&#xff0c;总结知识点&#xff08;内容来自&#xff1a;自我总结网上借鉴&#xff0…

Java设计模式:创建型模式→建造者模式

Java 建造者模式详解 1. 定义 建造者模式&#xff08;Builder Pattern&#xff09;是一种创建型设计模式&#xff0c;允许使用多个简单的对象一步步构建一个复杂的对象。该模式使用一个建造者对象来构造一个最终的对象&#xff0c;提供清晰的分步构建流程&#xff0c;从而使得…

从CRUD到高级功能:EF Core在.NET Core中全面应用(三)

目录 IQueryable使用 原生SQL使用 实体状态跟踪 全局查询筛选器 并发控制使用 IQueryable使用 在EFCore中IQueryable是一个接口用于表示可查询的集合&#xff0c;它继承自IEnumerable但具有一些关键的区别&#xff0c;使得它在处理数据库查询时非常有用&#xff0c;普通集…

C语言之小型成绩管理系统

&#x1f31f; 嗨&#xff0c;我是LucianaiB&#xff01; &#x1f30d; 总有人间一两风&#xff0c;填我十万八千梦。 &#x1f680; 路漫漫其修远兮&#xff0c;吾将上下而求索。 C语言之小型成绩管理系统 目录 设计题目设计目的设计任务描述设计要求输入和输出要求验收要…

Linux中DataX使用第一期

简介 DataX 是阿里云 DataWorks数据集成 的开源版本&#xff0c;在阿里巴巴集团内被广泛使用的离线数据同步工具/平台。DataX 实现了包括 MySQL、Oracle、OceanBase、SqlServer、Postgre、HDFS、Hive、ADS、HBase、TableStore(OTS)、MaxCompute(ODPS)、Hologres、DRDS, databen…

Windows配置frp内网穿透实现远程连接

仅个人记录 本文仅介绍客户端的配置 1. 开始 frp分为服务端和客户端&#xff0c;为实现内网穿透需要同时配置服务端和客户端&#xff0c;并且版本保持一致&#xff0c;可以前往 frp github下载 本文使用 0.51.2 版本&#xff0c;从GitHub下载并解压&#xff0c;得到如下文件…

PHP同城配送小程序

&#x1f680; 同城极速达——您生活中的极速配送大师 &#x1f4f1; 一款专为现代都市快节奏生活量身打造的同城配送小程序&#xff0c;同城极速达&#xff0c;集高效、便捷、智能于一身&#xff0c;依托ThinkPHPGatewayWorkerUniapp的强大架构&#xff0c;巧妙融合用户端、骑…

ESP32云开发二( http + led + lcd)

文章目录 前言先上效果图platformio.iniwokwi.tomldiagram.json源代码编译编译成功上传云端完结撒花⭐⭐⭐⭐⭐ 前言 阅读此篇前建议先看 此片熟悉下wokwi https://blog.csdn.net/qq_20330595/article/details/144289986 先上效果图 Column 1Column 2 platformio.ini wokwi…

分布式搜索引擎02

1. DSL查询文档 elasticsearch的查询依然是基于JSON风格的DSL来实现的。 1.1. DSL查询分类 Elasticsearch提供了基于JSON的DSL&#xff08;Domain Specific Language&#xff09;来定义查询。常见的查询类型包括&#xff1a; 查询所有&#xff1a;查询出所有数据&#xff0c…

reactor框架使用时,数据流请求流程

1. 我们在Flux打开时&#xff0c;可以看到 public abstract class Flux<T> implements CorePublisher<T> { 2. public interface CorePublisher<T> extends Publisher<T> {void subscribe(CoreSubscriber<? super T> subscriber); } Publish…

E-Prime2实现List嵌套

用E-Prime实现一个简单的List嵌套&#xff0c;实验流程基于斯特鲁程序&#xff08;色词一致/不一致实验&#xff09;。 首先File-New&#xff0c;新建一个空白项目 此时生成流程如下 Experiment Object是实验中被用到的流程或者控件对象&#xff0c;SessionProc是总流程&#x…

web-view环境下,H5页面打开其他小程序

在Web-view环境下&#xff0c;H5页面无法直接打开其他小程序。正确的实现方式是先从H5页面跳转回当前小程序&#xff0c;再由当前小程序跳转到目标小程序。具体实现方法如下&#xff1a; H5页面跳转回小程序时&#xff0c;调用wx.miniProgram.navigateTo()方法。 小程序跳转到…

ChatGPT 摘要,以 ESS 作为你的私有数据存储

作者&#xff1a;来自 Elastic Ryan_Earle 本教程介绍如何设置 Elasticsearch 网络爬虫&#xff0c;将网站索引到 Elasticsearch 中&#xff0c;然后利用 ChatGPT 使用我们的私人数据来总结对其提出的问题。 Python 脚本的 Github Repo&#xff1a;https://github.com/Gunner…

Linux系统的第一个进程是什么?

Linux进程的生命周期从创建开始&#xff0c;直至终止&#xff0c;贯穿了一个进程的整个存在过程。我们可以通过系统调用fork()或vfork()来创建一个新的子进程&#xff0c;这标志着一个新进程的诞生。 实际上&#xff0c;Linux系统中的所有进程都是由其父进程创建的。 既然所有…

《冲动》V1.6官方学习版

《冲动》官方版 https://pan.xunlei.com/s/VODiYvUAE1lECHcq66BR1np_A1?pwdfxc6# 具有侦探小说、戏剧和恐怖元素的惊悚片。 主角结束了漫长的商务旅行回到家&#xff0c;他的妻子和年幼的儿子热切地等待着他。然而&#xff0c;当他到达时&#xff0c;他发现有些不对劲&#x…

【Java计算机毕业设计】基于SSM圣宠宠物领养网站【源代码+数据库+LW文档+开题报告+答辩稿+部署教程+代码讲解】

源代码数据库LW文档&#xff08;1万字以上&#xff09;开题报告答辩稿 部署教程代码讲解代码时间修改教程 一、开发工具、运行环境、开发技术 开发工具 1、操作系统&#xff1a;Window操作系统 2、开发工具&#xff1a;IntelliJ IDEA或者Eclipse 3、数据库存储&#xff1a…

【微机原理与接口技术】定时控制接口

文章目录 8253的引脚和工作方式内部结构和引脚工作方式方式0&#xff1a;计数结束中断方式1&#xff1a;可编程单稳脉冲方式2&#xff1a;周期性负脉冲输出方式3&#xff1a;方波发生器方式4&#xff1a;软件触发的单次负脉冲输出方式5&#xff1a;硬件触发的单次负脉冲输出各种…

场馆预定平台高并发时间段预定实现V2

&#x1f3af; 本文档介绍了场馆预订系统接口V2的设计与实现&#xff0c;旨在解决V1版本中库存数据不一致及性能瓶颈的问题。通过引入令牌机制确保缓存和数据库库存的最终一致性&#xff0c;避免因服务器故障导致的库存错误占用问题。同时&#xff0c;采用消息队列异步处理库存…

从零到上线:Node.js 项目的完整部署流程(包含 Docker 和 CICD)

从零到上线&#xff1a;Node.js 项目的完整部署流程&#xff08;包含 Docker 和 CI/CD&#xff09; 目录 项目初始化&#xff1a;构建一个简单的 Node.js 应用设置 Docker 环境&#xff1a;容器化你的应用配置 CI/CD&#xff1a;自动化构建与部署上线前的最后检查&#xff1a;…