Angular1.x
是脏值检测来处理
React
或者Vue2
,最新的Angular
:通过数据劫持+发布订阅模式
vue2.x
重点是Object.defineProperty
通过Object.defineProperty的get和set进行数据劫持
通过遍历data数据进行数据代理到this上
通过{{}}对数据进行编译
通过发布订阅模式实现数据与视图同步
数据劫持:
观察对象,给对象增加Object.defineProperty
vue特点是不能新增不存在的属性 不存在的属性没有get和set
深度响应 因为每次赋予一个新对象时会给这个新对象增加defineProperty(数据劫持)
// 创建一个Observe构造函数
// 写数据劫持的主要逻辑
function Observe(data) {
// 所谓数据劫持就是给对象增加get,set
// 先遍历一遍对象再说
for (let key in data) { // 把data属性通过defineProperty的方式定义属性
let val = data[key];
observe(val); // 递归继续向下找,实现深度的数据劫持
//被标记的地方就是通过递归observe(val)进行数据劫持添加上了get和set!!,递归继续向a里面的对象去定义属性
Object.defineProperty(data, key, {
configurable: true,
get() {
return val;
},
set(newVal) { // 更改值的时候
if (val === newVal) { // 设置的值和以前值一样就不理它
return;
}
val = newVal; // 如果以后再获取值(get)的时候,将刚才设置的值再返回去
observe(newVal); // 当设置为新值后,也需要把新值再去定义成属性,加上get,set!!!
}
});
}
}
// 外面再写一个函数
// 不用每次调用都写个new
// 也方便递归调用
function observe(data) {
// 如果不是对象的话就直接return掉
// 防止递归溢出
if (!data || typeof data !== 'object') return;
return new Observe(data);
}
数据代理:
让我们每次拿data里的数据时,不用每次都写一长串,如mvvm._data.a.b这种,可以直接写成mvvm.a.b这种显而易见的方式
function Mvvm(options = {}) {
// 数据劫持
observe(data);
// this 代理了this._data
+ for (let key in data) {
Object.defineProperty(this, key, {
configurable: true,
get() {
return this._data[key]; // 如this.a = {b: 1}
},
set(newVal) {
this._data[key] = newVal;
}
});
+ }
}
// 此时就可以简化写法了
console.log(mvvm.a.b); // 1
mvvm.a.b = 'ok';
console.log(mvvm.a.b); // 'ok'
数据编译:把{{}}里面的内容解析出来
function Mvvm(options = {}) {
// observe(data);
// 编译
+ new Compile(options.el, this);
}
// 创建Compile构造函数
function Compile(el, vm) {
// 将el挂载到实例上方便调用
vm.$el = document.querySelector(el);
// 在el范围里将内容都拿到,当然不能一个一个的拿
// 可以选择移到内存中去然后放入文档碎片中,节省开销
let fragment = document.createDocumentFragment();
while (child = vm.$el.firstChild) {
fragment.appendChild(child); // 此时将el中的内容放入内存中
}
// 对el里面的内容进行替换
function replace(frag) {
Array.from(frag.childNodes).forEach(node => {
let txt = node.textContent;
let reg = /\{\{(.*?)\}\}/g; // 正则匹配{{}}
if (node.nodeType === 3 && reg.test(txt)) {
function replaceTxt() {
node.textContent = txt.replace(reg, (matched, placeholder) => {
console.log(placeholder); // 匹配到的分组 如:song, album.name, singer...
new Watcher(vm, placeholder, replaceTxt); // 监听变化,进行匹配替换内容
//reduce 为数组中的每一个元素依次执行回调函数
return placeholder.split('.').reduce((val, key) => {
return val[key];
}, vm);
});
};
// 替换
replaceTxt();
}
}
replace(fragment); // 替换内容
vm.$el.appendChild(fragment); // 再将文档碎片放入el中
}
发布订阅:让手动修改后的数据改变后页面也能改变。
发布订阅主要靠的就是数组关系,订阅就是放入函数,发布就是让数组里的函数执行
// 发布订阅模式 订阅和发布 如[fn1, fn2, fn3]
function Dep() {
// 一个数组(存放函数的事件池)
this.subs = [];
}
Dep.prototype = {
addSub(sub) {
this.subs.push(sub);
},
notify() {
// 绑定的方法,都有一个update方法
this.subs.forEach(sub => sub.update());
}
};
// 监听函数
// 通过Watcher这个类创建的实例,都拥有update方法
function Watcher(fn) {
this.fn = fn; // 将fn放到实例上
}
Watcher.prototype.update = function() {
this.fn();
};
let watcher = new Watcher(() => console.log(111)); //
let dep = new Dep();
dep.addSub(watcher); // 将watcher放到数组中,watcher自带update方法, => [watcher]
dep.addSub(watcher);
dep.notify(); // 111, 111
数据更新视图:
现在我们要订阅一个事件,当数据改变需要重新刷新视图,这就需要在 replace
替换的逻辑里来处理
通过new Watcher
把数据订阅一下,数据一变就执行改变内容的操作
function replace(frag) {
// 省略...
// 替换的逻辑
node.textContent = txt.replace(reg, val).trim();
// 监听变化
// 给Watcher再添加两个参数,用来取新的值(newVal)给回调函数传参
+ new Watcher(vm, RegExp.$1, newVal => {
node.textContent = txt.replace(reg, newVal).trim();
+ });
}
// 重写Watcher构造函数
function Watcher(vm, exp, fn) {
this.fn = fn;
+ this.vm = vm;
+ this.exp = exp;
// 添加一个事件
// 这里我们先定义一个属性
+ Dep.target = this;
+ let arr = exp.split('.');
+ let val = vm;
+ arr.forEach(key => { // 取值
+ val = val[key]; // 获取到this.a.b,默认就会调用get方法
+ });
+ Dep.target = null;
}
当获取值的时候就会自动调用get
方法,于是我们去找一下数据劫持
那里的get
方法
function Observe(data) {
+ let dep = new Dep();
// 省略...
Object.defineProperty(data, key, {
get() {
+ Dep.target && dep.addSub(Dep.target); // 将watcher添加到订阅事件中 [watcher]
return val;
},
set(newVal) {
if (val === newVal) {
return;
}
val = newVal;
observe(newVal);
+ dep.notify(); // 让所有watcher的update方法执行即可
}
})
}
当set修改值的时候执行了dep.notify
方法,这个方法是执行watcher
的update
方法,那么我们再对update
进行修改一下
Watcher.prototype.update = function() {
// notify的时候值已经更改了
// 再通过vm, exp来获取新的值
+ let arr = this.exp.split('.');
+ let val = this.vm;
+ arr.forEach(key => {
+ val = val[key]; // 通过get获取到新的值
+ });
this.fn(val); // 将每次拿到的新值去替换{{}}的内容即可
};
双向数据绑定:
// html结构
<input v-model="c" type="text">
// 数据部分
data: {
a: {
b: 1
},
c: 2
}
function replace(frag) {
// 省略...
+ if (node.nodeType === 1) { // 元素节点
let nodeAttr = node.attributes; // 获取dom上的所有属性,是个类数组
Array.from(nodeAttr).forEach(attr => {
let name = attr.name; // v-model type
let exp = attr.value; // c text
if (name.includes('v-')){
node.value = vm[exp]; // this.c 为 2
}
// 监听变化
new Watcher(vm, exp, function(newVal) {
node.value = newVal; // 当watcher触发时会自动将内容放进输入框中
});
node.addEventListener('input', e => {
let newVal = e.target.value;
// 相当于给this.c赋了一个新值
// 而值的改变会调用set,set中又会调用notify,notify中调用watcher的update方法实现了更新
vm[exp] = newVal;
});
});
+ }
if (node.childNodes && node.childNodes.length) {
replace(node);
}
}
参考:https://www.bilibili.com/video/BV1u4411W7ei?p=2&spm_id_from=pageDriver