请问有没有对 Object.defineProperty 研究比较深入的?
发布于 8 年前 作者 captainblue2013 4392 次浏览 来自 问答

Object.defineProperty 可以给对象添加一下属性,并且带一些设置,比较实用的就是 Getter/Setter.

那么请问,如果添加的属性是一个对象或者数组, Getter/Setter 要怎么弄呢?好像并不能检测到对象(数组)内变化

1 回复

Proxy?

The Proxy object is used to define custom behavior for fundamental operations (e.g. property lookup, assignment, enumeration, function invocation, etc).

回到顶部