Vue 双向数据绑定
双向绑定的原理
我们都知道 Vue
是数据双向绑定的框架,双向绑定由三个重要部分构成
- 数据层(Model):应用的数据及业务逻辑
- 视图层(View):应用的展示效果,各类UI组件
- 业务逻辑层(ViewModel):框架封装的核心,它负责将数据与视图关联起来
而上面的这个分层的架构方案,可以用一个专业术语进行称呼:MVVM
这里的控制层的核心功能便是 “数据双向绑定” 。
理解ViewModel
它的主要职责就是:
当然,它还有两个主要部分组成
- 监听器(Observer):对所有数据的属性进行监听
- 解析器(Compiler):对每个元素节点的指令进行扫描跟解析,根据指令模板替换数据,以及绑定相应的更新函数
实现双向绑定
我们还是以Vue
为例,先来看看Vue
中的双向绑定流程是什么的
new Vue()
首先执行初始化,对data
执行响应化处理,这个过程发生Observe
中
- 同时对模板执行编译,找到其中动态绑定的数据,从
data
中获取并初始化视图,这个过程发生在Compile
中
- 同时定义⼀个更新函数和
Watcher
,将来对应数据变化时Watcher
会调用更新函数
- 由于
data
的某个key
在⼀个视图中可能出现多次,所以每个key
都需要⼀个管家Dep
来管理多个Watcher
- 将来data中数据⼀旦发生变化,会首先找到对应的
Dep
,通知所有Watcher
执行更新函数
实现
先来一个构造函数:执行初始化,对data
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| class Vue { constructor(options) { this.$options = options; this.$data = options.data; observe(this.$data); proxy(this); new Compile(options.el, this); } }
|
对data
选项执行响应化具体操作
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| function observe(obj) { if (typeof obj !== "object" || obj == null) { return; } new Observer(obj); } class Observer { constructor(value) { this.value = value; this.walk(value); } walk(obj) { Object.keys(obj).forEach((key) => { defineReactive(obj, key, obj[key]); }); } }
|
编译Compile
对每个元素节点的指令进行扫描跟解析,根据指令模板替换数据,以及绑定相应的更新函数
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| class Compile { constructor(el, vm) { this.$vm = vm; this.$el = document.querySelector(el); if (this.$el) { this.compile(this.$el); } } compile(el) { const childNodes = el.childNodes; Array.from(childNodes).forEach((node) => { if (this.isElement(node)) { console.log("编译元素" + node.nodeName); } else if (this.isInterpolation(node)) { console.log("编译插值⽂本" + node.textContent); } if (node.childNodes && node.childNodes.length > 0) { this.compile(node); } }); } isElement(node) { return node.nodeType == 1; } isInterpolation(node) { return node.nodeType == 3 && /\{\{(.*)\}\}/.test(node.textContent); } }
|
依赖收集
视图中会用到data
中某key
,这称为依赖。同⼀个key
可能出现多次,每次都需要收集出来用⼀个Watcher
来维护它们,此过程称为依赖收集多个Watcher
需要⼀个Dep
来管理,需要更新时由Dep
统⼀通知
实现思路:
defineReactive
时为每⼀个key
创建⼀个Dep
实例
- 初始化视图时读取某个
key
,例如name1
,创建⼀个watcher1
- 由于触发
name1
的getter
方法,便将watcher1
添加到name1
对应的Dep中
- 当
name1
更新,setter
触发时,便可通过对应Dep
通知其管理所有Watcher
更新
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| class Watcher { constructor(vm, key, updater) { this.vm = vm this.key = key this.updaterFn = updater Dep.target = this vm[key] Dep.target = null } update() { this.updaterFn.call(this.vm, this.vm[this.key]) } }
|
声明Dep
1 2 3 4 5 6 7 8 9 10 11
| class Dep { constructor() { this.deps = []; } addDep(dep) { this.deps.push(dep); } notify() { this.deps.forEach((dep) => dep.update()); } }
|
创建watcher
时触发getter
1 2 3 4 5 6 7
| class Watcher { constructor(vm, key, updateFn) { Dep.target = this; this.vm[this.key]; Dep.target = null; } }
|
依赖收集,创建Dep
实例
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| function defineReactive(obj, key, val) { this.observe(val); const dep = new Dep(); Object.defineProperty(obj, key, { get() { Dep.target && dep.addDep(Dep.target); return val; }, set(newVal) { if (newVal === val) return; dep.notify(); }, }); }
|