1 Star 0 Fork 0

songlu/vuesupermall

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue响应式原理练习.html 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
songlu 提交于 2021-04-14 15:47 . vue学习代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div id="app">
{{message}}
{{message}}
{{name}}
</div>
<script>
//发布者订阅者模式
const obj = {
message: '你好',
name: 'lu'
}
Object.keys(obj).forEach(key => {
let value = obj[key]
Object.defineProperty(obj, key, {
set(newValue) {
value = newValue
},
get() {
return value
}
})
})
//发布者
class Dep{
constructor(){
this.subs = []
}
addSub(watcher){
this.subs.push(watcher)
}
notify(){
this.subs.forEach(item => {
item.update()
})
}
}
//订阅者
class Watcher{
constructor(name){
this.name = name
}
update(){
console.log(this.name + '发生改变');
}
}
//使用
const dep = new Dep()
const w1 = new Watcher('张三')
dep.addSub(w1)
const w2 = new Watcher('李四')
dep.addSub(w2)
dep.notify()
</script>
<script src="./node_modules/vue/dist/vue.js"></script>
<script>
const app = new Vue({
el:"#app",
data:{
message: '你好',
name: 'lu'
}
})
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/songlu666/vuesupermall.git
git@gitee.com:songlu666/vuesupermall.git
songlu666
vuesupermall
vuesupermall
master

搜索帮助