14

好奇心から、知識を増やすために、DOM 要素と JavaScript 変数の間にある種の双方向データ バインディングを実装したいと考えました。

ここで私の問題の半分に対する優れた答えを見つけることができたのは幸運でした @stackoverflow これにより、この要点https://gist.github.com/384583にたどり着きましたが、それでも100%で物事を成し遂げることはできません。

これが私のコードの例です: http://jsfiddle.net/bpH6Z/

フィドルを実行して「値の表示」をクリックしようとすると、undefinedが表示されますが、オブジェクトの属性の実際の値を取得したいです。

JavaScript の経験がないために何か間違ったことをしている可能性がありますが、_bind() および _watch() 呼び出しの後に属性「secret」を正しく読み取れない理由がわかりませんか?

免責事項:私が言ったように、私はjavascriptのより良い知識が欲しいのでこれをやっています、そして私は自分のフレームワークを書くつもりはありません. したがって、「USE FRAMEWORK X」はまったく役に立ちません.angularjsで仕事を成し遂げることができたからです。

4

3 に答える 3

5

http://jsfiddle.net/bpH6Z/4/をお試しください

Object.prototype.__watch で再定義されたゲッター/セッターを更新しました。現在、ハンドラーは新しい値を返す必要があります。

更新: ハンドラーが新しく設定された値を返す必要がなくなりました。

現在のコード:

//Got this great piece of code from https://gist.github.com/384583
Object.defineProperty(Object.prototype, "__watch", {
    enumerable: false,
    configurable: true,
    writable: false,
    value: function(prop, handler) {
        var val = this[prop],
            getter = function() {
                return val;
            },
            setter = function(newval) {
                val = newval;
                handler.call(this, prop, newval);
                return newval;
            };

        if (delete this[prop]) { // can't watch constants
            Object.defineProperty(this, prop, {
                get: getter,
                set: setter,
                enumerable: true,
                configurable: true
            });
        }
    }
});

var Controller = function () {
    //The property is changed whenever the dom element changes value
    //TODO add a callback ?
    this._bind = function (DOMelement, propertyName) {
        //The next line is commented because priority is given to the model
        //this[propertyName] = $(DOMelement).val();
        var _ctrl = this;
        $(DOMelement).on("change input propertyChange", function(e) {
            e.preventDefault();
            _ctrl[propertyName] = DOMelement.val();
        });

    };

    //The dom element changes values when the propertyName is setted
    this._watch = function(DOMelement, propertyName) {
        //__watch triggers when the property changes
        this.__watch(propertyName, function(property, value) {
            $(DOMelement).val(value);
        });
    };
};

var ctrl = new Controller();
ctrl.secret = 'null';
ctrl._bind($('#text1'), 'secret'); // I want the model to reflect changes in #text1
ctrl._watch($('#text2'), 'secret'); // I want the dom element #text2 to reflect changes in the model
$('#button1').click(function() {
    $('#output').html('Secret is : ' + ctrl.secret); //This gives problems
});

現在の HTML:

<html>
<head></head>
<body>
    value: <input type="text" id="text1" /><br />
    copy: <input type="text" id="text2" /><br />
    <input type="button" id="button1" value="View value"><br />
    <span id="output"></span>
</body>
</html>
于 2012-08-10T15:03:17.807 に答える
3

__watch関数に渡すハンドラーにreturnステートメントがありません。

this._watch = function(DOMelement, propertyName) {
    //__watch triggers when the property changes
    this.__watch(propertyName, function(property, value) {
        $(DOMelement).val(value);
        return value;
    })

}

newvalハンドラから返されたものに設定されているため、それはありませんundefined

于 2012-08-10T15:02:56.400 に答える
0

マルチウォッチャー向けに強化しました。

http://jsfiddle.net/liyuankui/54vE4/

//The dom element changes values when the propertyName is setted
this._watch = function(DOMelement, propertyName) {
    //__watch triggers when the property changes
    if(watchList.indexOf(DOMelement)<0){
        watchList.push(DOMelement);
    }
    this.__watch(propertyName, function(property, value) {
        for(var i=0;i<watchList.length;i++){
            var watch=watchList[i];
            $(watch).val(value);
            $(watch).html(value);
        }
    });
};
于 2014-06-18T12:05:12.407 に答える