We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 采用的是 数据劫持 + 发布-订阅模式 这种方式,通过 Object.defineProperty() (VUE3 是通过 Proxy) 来劫持 data 各个属性的 setter 和 getter,在 getter 中进行依赖函数收集(订阅),在 setter 中,也就是数据变动时,触发订阅者的监听回调。
数据劫持
发布-订阅模式
Object.defineProperty()
setter
getter
具体步骤
data
update()
dep.notice()
数据变化 -> 视图更新
视图交互变化(input) -> 数据 Model 变更
The text was updated successfully, but these errors were encountered:
No branches or pull requests
VUE 采用的是
数据劫持
+发布-订阅模式
这种方式,通过Object.defineProperty()
(VUE3 是通过 Proxy) 来劫持 data 各个属性的setter
和getter
,在getter
中进行依赖函数收集(订阅),在setter
中,也就是数据变动时,触发订阅者的监听回调。具体步骤
data
中的属性进行递归遍历,给它们加上setter
和getter
。update()
方法dep.notice()
通知时,能调用自身的update()
方法,触发 Compile 中绑定的回调数据变化 -> 视图更新
和视图交互变化(input) -> 数据 Model 变更
的双向绑定效果The text was updated successfully, but these errors were encountered: