Vue2 响应式系统之深度响应

作者:windliang 时间:2024-04-26 17:40:05 

1、场景

import { observe } from "./reactive";
import Watcher from "./watcher";
const data = {
   text: {
       innerText: {
           childText: "hello",
       },
   },
};
observe(data);
const updateComponent = () => {
   console.log(data.text.innerText.childText);
};

new Watcher(updateComponent);
data.text.innerText.childText = "liang";

我们的响应式系统到现在还没有支持属性是对象时候的响应,因此我们改变 的时候不会有任何输出。childText

我们只收集了 的依赖,所以如果想要响应的话必须给 整个赋值为一个新对象。data.textdata.text

import { observe } from "./reactive";
import Watcher from "./watcher";
const data = {
   text: {
       innerText: {
           childText: "hello",
       },
   },
};
observe(data);
const updateComponent = () => {
   console.log(data.text.innerText.childText);
};

new Watcher(updateComponent);
data.text = {
   innerText: {
       childText: "liang",
   },
};

Vue2 响应式系统之深度响应

我们当然不希望每次都赋值整个对象,我们需要做一些修改,把嵌套的对象也变成响应式的。

2、方案

我们只需要在给某个 重写 和 之前,把它的 就像上边给 调用 函数一样,也调用一次 函数即可。keygetsetvaluedataobserveobserve

同时提供 参数,留下扩展,让外界决定是否需要深度响应。shallow

/*******************新增 shallow*******************/
export function defineReactive(obj, key, val, shallow) {
/****************************************************/
   const property = Object.getOwnPropertyDescriptor(obj, key);
   // 读取用户可能自己定义了的 get、set
   const getter = property && property.get;
   const setter = property && property.set;
   // val 没有传进来话进行手动赋值
   if ((!getter || setter) && arguments.length === 2) {
       val = obj[key];
   }
   const dep = new Dep(); // 持有一个 Dep 对象,用来保存所有依赖于该变量的 Watcher
   /*******************新增****************************/
   !shallow && observe(val);
 /******************************************************/
   Object.defineProperty(obj, key, {
       enumerable: true,
       configurable: true,
       get: function reactiveGetter() {
           const value = getter ? getter.call(obj) : val;
           if (Dep.target) {
               dep.depend();
           }
           return value;
       },
       set: function reactiveSetter(newVal) {
           const value = getter ? getter.call(obj) : val;

if (setter) {
               setter.call(obj, newVal);
           } else {
               val = newVal;
           }
           dep.notify();
       },
   });
}

同时,在 函数中,传进来的 不是对象的话我们直接 。observevaluereturn

/*
util.js
export function isObject(obj) {
   return obj !== null && typeof obj === "object";
}
*/
export function observe(value) {
   if (!isObject(value)) {
       return;
   }
   let ob = new Observer(value);
   return ob;
}

3、场景2

import { observe } from "./reactive";
import Watcher from "./watcher";
const data = {
   text: {
       innerText: {
           childText: "hello",
       },
   },
};
observe(data);
const updateComponent = () => {
   console.log(data.text.innerText.childText);
};

new Watcher(updateComponent);

data.text.innerText.childText = "liang";
data.text = {
   innerText: {
       childText: "liang2",
   },
};

data.text.innerText.childText = "liang3";

可以一分钟想一下上边会输出什么。

new Watcher(updateComponent); ,执行一次 输出 。updateComponenthello

data.text.innerText.childText = "liang"; ,我们已经解决了属性是对象的情况,因此这里也会输出 。liang

data.text = {
   innerText: {
       childText: "liang2",
   },
};

上边代码就是文章最开头的方法,因此也会触发函数执行,输出 。liang2

data.text.innerText.childText = "liang3"; 最后这句会执行吗?

答案是否定的了,因为我们的 赋值为了一个新对象,但这个新对象我们并没有将其设置为响应式的。data.text

因此我们需要在 的时候把对象也设置为响应式的。set

/**
* Define a reactive property on an Object.
*/
export function defineReactive(obj, key, val, shallow) {
   const property = Object.getOwnPropertyDescriptor(obj, key);
   // 读取用户可能自己定义了的 get、set
   const getter = property && property.get;
   const setter = property && property.set;
   // val 没有传进来话进行手动赋值
   if ((!getter || setter) && arguments.length === 2) {
       val = obj[key];
   }
   const dep = new Dep(); // 持有一个 Dep 对象,用来保存所有依赖于该变量的 Watcher

let childOb = !shallow && observe(val);
   Object.defineProperty(obj, key, {
       enumerable: true,
       configurable: true,
       get: function reactiveGetter() {
           const value = getter ? getter.call(obj) : val;
           if (Dep.target) {
               dep.depend();
           }
           return value;
       },
       set: function reactiveSetter(newVal) {
           const value = getter ? getter.call(obj) : val;

if (setter) {
               setter.call(obj, newVal);
           } else {
               val = newVal;
           }
         /******新增 *************************/
           childOb = !shallow && observe(newVal);
          /************************************/
           dep.notify();
       },
   });
}

4、总结

通过递归解决了属性是对象的依赖,可以为未来数组的依赖留下基础。

来源:https://vue.windliang.wang/

标签:Vue2,响应式,系统,深度,响应
0
投稿

猜你喜欢

  • Go内存节省技巧简单实现方法

    2024-04-27 15:25:05
  • 进一步理解Python中的函数编程

    2023-12-07 16:50:16
  • Django框架模型简单介绍与使用分析

    2021-04-06 02:59:19
  • Python制作旋转花灯祝大家元宵节快乐(实例代码)

    2023-10-24 02:49:18
  • MySQL中时间函数操作大全

    2024-01-14 19:45:11
  • Python中的配对函数zip()解读

    2021-04-14 20:54:33
  • Python函数进阶之迭代器的原理与使用详解

    2023-03-28 09:02:01
  • PDO::errorInfo讲解

    2023-06-06 01:51:53
  • opencv实现图像校正

    2023-12-26 02:07:49
  • Pycharm 安装 idea VIM插件的图文教程详解

    2023-08-14 20:12:49
  • 方便和实用

    2009-02-02 10:16:00
  • GoLang中Strconv库有哪些常用方法

    2024-05-09 10:11:17
  • 解决Pycharm中import时无法识别自己写的程序方法

    2023-05-09 22:47:37
  • python神经网络InceptionV3模型复现详解

    2021-05-29 16:53:01
  • Python手动或自动协程操作方法解析

    2023-06-30 11:38:41
  • mysql 5.7.18 免安装版window配置方法

    2024-01-14 15:03:45
  • 使用python解析json字段的3种方式实例

    2021-12-24 04:16:27
  • Python基础入门之魔法方法与异常处理

    2021-07-01 07:29:39
  • PyQt5的相对布局管理的实现

    2022-02-23 08:11:18
  • php实现搜索一维数组元素并删除二维数组对应元素的方法

    2023-10-09 05:45:40
  • asp之家 网络编程 m.aspxhome.com