Fe-interview: [vue] 说说你对Object.defineProperty的理解

Created on 22 Jun 2019  ·  1Comment  ·  Source: haizlin/fe-interview

[vue] 说说你对Object.defineProperty的理解

vue

Most helpful comment

Object.defineProperty定义新属性或修改原有的属性;
vue的数据双向绑定的原理就是用的Object.defineProperty这个方法,里面定义了setter和getter方法,通过观察者模式(发布订阅模式)来监听数据的变化,从而做相应的逻辑处理。

>All comments

Object.defineProperty定义新属性或修改原有的属性;
vue的数据双向绑定的原理就是用的Object.defineProperty这个方法,里面定义了setter和getter方法,通过观察者模式(发布订阅模式)来监听数据的变化,从而做相应的逻辑处理。

Was this page helpful?
0 / 5 - 0 ratings