1 Star 1 Fork 0

肖艳斌/vue_code

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
4_5effecttoeffect.html 1.45 KB
一键复制 编辑 原始数据 按行查看 历史
yanbin xiao 提交于 2024-03-21 20:44 . 修改文案
<!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 id="app"></div>
<div style="font-size: 14px; position:absolute;bottom:20px; left:10px;">
源代码地址:https://gitee.com/xiao_yan_bin/vue_code<br/>
github: https://github.com/xiaoyanbin/vue_code<br/>
vue设计与实现,持续更新,建议点赞收藏,有问题可以在评论区留言
</div>
</body>
<script>
effect(function effectFn1(){
console.log('effectFn1')
effect(function effectFn2(){
console.log('effectFn2')
effect(function effectFn3(){
console.log('effectFn3')
})
})
})
let activeEffect
const effectStack = []
function effect(fn){
const effectFn = () => {
cleanup(effectFn)
activeEffect = effectFn
effectStack.push(effectFn)
fn()
effectStack.pop()
activeEffect = effectStack[effectStack.length - 1]
}
effectFn.deps = []
// 执行副作用函数
effectFn()
}
// 避免无限循环
function trigger(target,key){
const depsMap = targetMap.get(target)
if(!depsMap) return
const dep = depsMap.get(key)
const effectsToRun = new Set()
effects && effects.forEach(effect => {
// 如果不是当前激活的副作用函数,就添加到effectsToRun中
if(effect !== activeEffect){
effectsToRun.add(effect)
}
})
effectsToRun.forEach(effect => {
effect()
})
}
</script>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/xiao_yan_bin/vue_code.git
git@gitee.com:xiao_yan_bin/vue_code.git
xiao_yan_bin
vue_code
vue_code
master

搜索帮助