<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<div class="inner1"></div>
<div class="inner2"></div>
<div>修改第一个name值<input type="text" class="input1" /></div>
<div>修改第二个name值<input type="text" class="input2" /></div>
</body>
<script>
const inner1 = document.querySelector(".inner1");
const inner2 = document.querySelector(".inner2");
const input1 = document.querySelector(".input1");
const input2 = document.querySelector(".input2");
const proxy1 = reactive({
name: "tsy",
});
const proxy2 = reactive({
name: "nyx",
});
input1.onchange = function (e) {
proxy1.name = e.target.value;
};
input2.onchange = function (e) {
proxy2.name = e.target.value;
};
// const buckiet = new Map()
const buckiet = new WeakMap();
let effectFunction = null;
function reactive(state) {
return new Proxy(state, {
get(target, key) {
console.log("target=>", target);
console.log(`获取了target的${key}属性`);
track(target, key);
return target[key];
},
set(target, key, value) {
console.log("target=>", target);
console.log(`修改了target的>${key}值为${value}`);
target[key] = value;
tigger(target, key);
},
});
}
/**
* @description 在get时收集属性依赖:
* @param {*} target 代理对象
* @param {*} key 代理对象属性key
* @return {*}
*/
function track(target, key) {
if (!effectFunction) return;
let depMap = buckiet.get(target);
if (!depMap) {
depMap = new Map();
buckiet.set(target, depMap);
}
let depSet = depMap.get(key);
if (!depSet) {
depSet = new Set();
depMap.set(key, depSet);
}
depSet.add(effectFunction);
}
/**
* @description: 在set触发,执行相关依赖
* @param {*} target 代理对象
* @param {*} key 触发修改的代理对象属性key
* @return {*}
*/
function tigger(target, key) {
const depMap = buckiet.get(target);
if (!depMap) return;
const depSet = depMap.get(key);
if (!depSet) return;
depSet.forEach((fun) => fun());
}
/**
* @description: 记录副作用函数
* @param {*} fun 操作函数
* @return {*}
*/
function effect(fun) {
if (typeof fun !== "function") return;
effectFunction = fun;
effectFunction();
effectFunction = null;
}
// inner.innerHTML = proxy.name
const handle1 = function () {
inner1.innerHTML = proxy1.name;
};
const handle2 = function () {
inner2.innerHTML = proxy2.name;
};
effect(handle1);
effect(handle2);
setTimeout(() => {
proxy1.name = "糖糖";
}, 1000);
setTimeout(() => {
proxy2.name = "abr";
}, 2000);
</script>
</html>
proxy响应式实现
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 一、对象属性修改的监听、Object.defineProperty、Proxy、Reflect 1、通过 Obje...
- vue3.0监测机制有了很大的改善,弥补了vue2.0的一些局限: 对属性的添加、删除动作的监测; 对数组基于下标...
- Object.defineProperty 劫持数据 只是对对象的属性进行劫持 无法监听新增属性和删除属性需要使用...
- 发布者订阅者模式 vue的响应式系统是由发布者订阅者模式来收集依赖和派发更新的,所以首先实现Dep的类 测试数据 ...