web-dev-qa-db-ja.com

JavaScriptでオブジェクトプロパティの変更を監視する

可能性のある複製:
すべてのブラウザのJavascript Object.Watch?

watch()メソッド に関するMozillaのドキュメントを読みました。とても便利そうです。

ただし、Safariに似たものは見つかりません。 Internet Explorerでもありません。

ブラウザ間の移植性をどのように管理しますか?

36
Philippe

少し前に、このために小さな object.watch shim を作成しました。 IE8、Safari、Chrome、Firefox、Operaなどで動作します。

/*
* object.watch v0.0.1: Cross-browser object.watch
*
* By Elijah Grey, http://eligrey.com
*
* A shim that partially implements object.watch and object.unwatch
* in browsers that have accessor support.
*
* Public Domain.
* NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
*/

// object.watch
if (!Object.prototype.watch)
    Object.prototype.watch = function (prop, handler) {
        var oldval = this[prop], newval = oldval,
        getter = function () {
            return newval;
        },
        setter = function (val) {
            oldval = newval;
            return newval = handler.call(this, prop, oldval, val);
        };
        if (delete this[prop]) { // can't watch constants
            if (Object.defineProperty) // ECMAScript 5
                Object.defineProperty(this, prop, {
                    get: getter,
                    set: setter
                });
            else if (Object.prototype.__defineGetter__ && Object.prototype.__defineSetter__) { // legacy
                Object.prototype.__defineGetter__.call(this, prop, getter);
                Object.prototype.__defineSetter__.call(this, prop, setter);
            }
        }
    };

// object.unwatch
if (!Object.prototype.unwatch)
    Object.prototype.unwatch = function (prop) {
        var val = this[prop];
        delete this[prop]; // remove accessors
        this[prop] = val;
    };
67
Eli Grey

残念ながら、これは移植可能なソリューションではありません。 IEは私の知る限りこのようなものはありませんが、

2
Joel Martinez