Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VUE 的双向绑定原理是什么 #21

Open
suukii opened this issue Jul 12, 2020 · 0 comments
Open

VUE 的双向绑定原理是什么 #21

suukii opened this issue Jul 12, 2020 · 0 comments
Labels

Comments

@suukii
Copy link
Owner

suukii commented Jul 12, 2020

VUE 采用的是 数据劫持 + 发布-订阅模式 这种方式,通过 Object.defineProperty() (VUE3 是通过 Proxy) 来劫持 data 各个属性的 settergetter,在 getter 中进行依赖函数收集(订阅),在 setter 中,也就是数据变动时,触发订阅者的监听回调。

具体步骤

  1. Observer 对 data 中的属性进行递归遍历,给它们加上 settergetter
  2. Compile 解析模板指令,将模板中的变量替换成数据,初始化渲染页面视图,将每个指令对应的节点绑定更新函数,添加监听数据的订阅者,一旦数据发生变动就更新视图。
  3. Watcher 是 Observer 和 Compile 之间通信的桥梁,主要做了:
    • 在自身实例化时往属性订阅器 (dep) 里添加自己
    • 自身必须有一个 update() 方法
    • 等属性变动 dep.notice() 通知时,能调用自身的 update() 方法,触发 Compile 中绑定的回调
  4. MVVM 作为数据绑定的入口,整合 Observer、Compile 和 Watcher 三者,通过 Observer 来监听 Model 数据变化,通过 Compile 来解析编译模板指令,最终利用 Watcher 搭起 Observer 和 Compile 之间的通信桥梁,达到 数据变化 -> 视图更新视图交互变化(input) -> 数据 Model 变更 的双向绑定效果
@suukii suukii added the vue label Jul 12, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant