Ruby's Louvre

每天学习一点点算法

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

属性监听器

在Proxy没有标准化之前,FF的Object.prototype.watch可是一个好东西。通过ecma262v5的特性描述符,我们可以实现此功能,这用于node.js最好不过了。

if ( ! Object.prototype.watch) {
    Object.defineProperty(Object.prototype, 'watch', {
        value: function (prop, handler) {
            var val = this[prop];
            var getter = function () {
                return val;
            };
            var setter = function (newVal) {
                var val = handler.call(this, prop, val, newVal);
            };
            if (delete (this[prop])) {
                Object.defineProperty(this, prop, {
                    get: getter,
                    set: setter,
                    configurable: true
                });
            }
        }
    });
}
/**
 * Object.unwatch() - Removes a watchpoint set with the watch method.
 * @param prop
 */
if ( ! Object.prototype.unwatch) {
    Object.defineProperty(Object.prototype, 'unwatch', {
        value: function (prop) {
            var val = this[prop];
            delete (this[prop]);
            this[prop] = val;
        }
    });
}

如果您觉得此文有帮助,可以打赏点钱给我支付宝1669866773@qq.com ,或扫描二维码

posted on   司徒正美  阅读(1862)  评论(2编辑  收藏  举报

编辑推荐:
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
阅读排行:
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?
· Pantheons:用 TypeScript 打造主流大模型对话的一站式集成库
点击右上角即可分享
微信分享提示