web-dev-qa-db-ja.com

バックボーンのスーパー

_Backbone.Model_のclone()メソッドをオーバーライドするとき、このオーバーライドされたメソッドを私の移植から呼び出す方法はありますか?このようなもの:

_var MyModel = Backbone.Model.extend({
    clone: function(){
        super.clone();//calling the original clone method
    }
})
_
73

あなたが使用したいでしょう:

_Backbone.Model.prototype.clone.call(this);
_

これは、this(現在のモデル)のコンテキストで_Backbone.Model_から元のclone()メソッドを呼び出します。

From Backbone docs

Superについては簡単に説明します。JavaScriptはsuperを呼び出す簡単な方法を提供しません。プロトタイプチェーンの上位で定義された同じ名前の関数です。 setやsaveなどのコア関数をオーバーライドし、親オブジェクトの実装を呼び出したい場合は、明示的に呼び出す必要があります。

_var Note = Backbone.Model.extend({
 set: function(attributes, options) {
 Backbone.Model.prototype.set.apply(this, arguments);
 ...
 }    
});
_
99
soldier.moth

__super__ プロパティ。親クラスプロトタイプへの参照です。

var MyModel = Backbone.Model.extend({
  clone: function(){
    MyModel.__super__.clone.call(this);
  }
});
36
charlysisto

Josh Nielsen このためのエレガントな解決策を見つけました 。これは多くのさを隠しています。

このスニペットをアプリに追加して、Backboneのモデルを拡張するだけです。

Backbone.Model.prototype._super = function(funcName){
    return this.constructor.prototype[funcName].apply(this, _.rest(arguments));
}

次に、次のように使用します。

Model = Backbone.model.extend({
    set: function(arg){
        // your code here

        // call the super class function
        this._super('set', arg);
    }
});
18

Geek_daveとcharlysistoによって与えられた答えに基づいて、複数レベルの継承を持つクラスにthis._super(funcName, ...)サポートを追加するためにこれを書きました。それは私のコードでうまく機能しました。

_Backbone.View.prototype._super = Backbone.Model.prototype._super = function(funcName) {
        // Find the scope of the caller.
        var scope = null;
        var scan = this.__proto__;
        search: while (scope == null && scan != null) {
            var names = Object.getOwnPropertyNames(scan);
            for (var i = 0; i < names.length; i++) {
                if (scan[names[i]] === arguments.callee.caller) {
                    scope = scan;
                    break search;
                }
            }
            scan = scan.constructor.__super__;
        }
        return scan.constructor.__super__[funcName].apply(this, _.rest(arguments));
    };
_

1年後、いくつかのバグを修正し、処理を高速化しました。以下は、現在使用しているコードです。

_var superCache = {};

// Hack "super" functionality into backbone. 
Backbone.View.prototype._superFn = Backbone.Model.prototype._superFn = function(funcName, _caller) {
    var caller = _caller == null ? arguments.callee.caller : _caller;
    // Find the scope of the caller.
    var scope = null;
    var scan = this.__proto__;
    var className = scan.constructor.className;
    if (className != null) {
        var result = superCache[className + ":" + funcName];
        if (result != null) {
            for (var i = 0; i < result.length; i++) {
                if (result[i].caller === caller) {
                    return result[i].fn;
                }
            }
        }
    }
    search: while (scope == null && scan != null) {
        var names = Object.getOwnPropertyNames(scan);
        for (var i = 0; i < names.length; i++) {
            if (scan[names[i]] === caller) {
                scope = scan;
                break search;
            }
        }
        scan = scan.constructor.__super__;
    }
    var result = scan.constructor.__super__[funcName];
    if (className != null) {
        var entry = superCache[className + ":" + funcName];
        if (entry == null) {
            entry = [];
            superCache[className + ":" + funcName] = entry;
        }
        entry.Push({
                caller: caller,
                fn: result
            });
    }
    return result;
};

Backbone.View.prototype._super = Backbone.Model.prototype._super = function(funcName) {
        var args = new Array(arguments.length - 1);
        for (var i = 0; i < args.length; i++) {
            args[i] = arguments[i + 1];
        }
        return this._superFn(funcName, arguments.callee.caller).apply(this, args);
    };
_

次に、このコードを与えられます:

_var A = Backbone.Model.extend({ 
 //   className: "A",
    go1: function() { console.log("A1"); },  
    go2: function() { console.log("A2"); },  
    });

var B = A.extend({ 
 //   className: "B",
    go2: function() { this._super("go2"); console.log("B2"); },  
    });

var C = B.extend({ 
 //   className: "C",
    go1: function() { this._super("go1"); console.log("C1"); },
    go2: function() { this._super("go2"); console.log("C2"); }  
    });

var c = new C();
c.go1();
c.go2();
_

コンソールの出力はこれです:

_A1
C1
A2
B2
C2
_

興味深いのは、クラスCのthis._super("go1")への呼び出しは、クラスAでヒットするまでクラス階層をスキャンすることです。他のソリューションではこれを行いません。

追伸クラス定義のclassNameエントリのコメントを解除して、__super_ルックアップのキャッシュを有効にします。 (これらのクラス名はアプリケーション内で一意であることが前提です。)

4
mab

This._super();を呼び出すだけの場合関数名を引数として渡さずに

Backbone.Controller.prototype._super = function(){
    var fn = Backbone.Controller.prototype._super.caller, funcName;

    $.each(this, function (propName, prop) {
        if (prop == fn) {
            funcName = propName;
        }
    });

    return this.constructor.__super__[funcName].apply(this, _.rest(arguments));
}

このプラグインをより適切に使用: https://github.com/lukasolson/Backbone-Super

3
Roman Krom

元のメソッドをキャッシュできると信じています(ただし、テストはされていません):

var MyModel = Backbone.Model.extend({
  origclone: Backbone.Model.clone,
  clone: function(){
    origclone();//calling the original clone method
  }
});
2
swatkins

親クラスが正確に何であるかがわからない場合(多重継承またはヘルパー関数が必要な場合)、次を使用できます。

var ChildModel = ParentModel.extend({

  initialize: function() {
    this.__proto__.constructor.__super__.initialize.apply(this, arguments);
    // Do child model initialization.
  }

});

ヘルパー機能付き:

function parent(instance) {
  return instance.__proto__.constructor.__super__;
};

var ChildModel = ParentModel.extend({

  initialize: function() {
    parent(this).initialize.apply(this, arguments);
    // Do child model initialization.
  }

});
1

私の要点からのbackbone._super.js: https://Gist.github.com/sarink/a3cf3f08c17691395edf

// Forked/modified from: https://Gist.github.com/maxbrunsfeld/1542120
// This method gives you an easier way of calling super when you're using Backbone in plain javascript.
// It lets you avoid writing the constructor's name multiple times.
// You still have to specify the name of the method.
//
// So, instead of having to write:
//
//    var Animal = Backbone.Model.extend({
//        Word: "",
//        say: function() {
//            return "I say " + this.Word;
//        }
//    });
//    var Cow = Animal.extend({
//        Word: "moo",
//        say: function() {
//            return Animal.prototype.say.apply(this, arguments) + "!!!"
//        }
//    });
//
//
// You get to write:
//
//    var Animal = Backbone.Model.extend({
//        Word: "",
//        say: function() {
//            return "I say " + this.Word;
//        }
//    });
//    var Cow = Animal.extend({
//        Word: "moo",
//        say: function() {
//            return this._super("say", arguments) + "!!!"
//        }
//    });

(function(root, factory) {
    if (typeof define === "function" && define.AMD) {
        define(["underscore", "backbone"], function(_, Backbone) {
            return factory(_, Backbone);
        });
    }
    else if (typeof exports !== "undefined") {
        var _ = require("underscore");
        var Backbone = require("backbone");
        module.exports = factory(_, Backbone);
    }
    else {
        factory(root._, root.Backbone);
    }
}(this, function(_, Backbone) {
    "use strict";

    // Finds the next object up the prototype chain that has a different implementation of the method.
    var findSuper = function(methodName, childObject) {
        var object = childObject;
        while (object[methodName] === childObject[methodName]) {
            object = object.constructor.__super__;
        }
        return object;
    };

    var _super = function(methodName) {
        // Keep track of how far up the prototype chain we have traversed, in order to handle nested calls to `_super`.
        this.__superCallObjects__ || (this.__superCallObjects__ = {});
        var currentObject = this.__superCallObjects__[methodName] || this;
        var parentObject  = findSuper(methodName, currentObject);
        this.__superCallObjects__[methodName] = parentObject;

        // If `methodName` is a function, call it with `this` as the context and `args` as the arguments, if it's an object, simply return it.
        var args = _.tail(arguments);
        var result = (_.isFunction(parentObject[methodName])) ? parentObject[methodName].apply(this, args) : parentObject[methodName];
        delete this.__superCallObjects__[methodName];
        return result;
    };

    // Mix in to Backbone classes
    _.each(["Model", "Collection", "View", "Router"], function(klass) {
        Backbone[klass].prototype._super = _super;
    });

    return Backbone;
}));
1
sarink

以下の2つの関数、1つは関数名を渡す必要があり、もう1つはスーパーバージョンが必要な関数を「発見」できます

Discover.Model = Backbone.Model.extend({
       _super:function(func) {
        var proto = this.constructor.__super__;
        if (_.isUndefined(proto[func])) {
            throw "Invalid super method: " + func + " does not exist in prototype chain.";
        }
        return proto[func].apply(this, _.rest(arguments));
    },
    _superElegant:function() {
        t = arguments;
        var proto = this.constructor.__super__;
        var name;
        for (name in this) {
            if (this[name] === arguments.callee.caller) {
                console.log("FOUND IT " + name);
                break;
            } else {
                console.log("NOT IT " + name);
            }
        }
        if (_.isUndefined(proto[name])) {
            throw "Super method for: " + name + " does not exist.";
        } else {
            console.log("Super method for: " + name + " does exist!");
        }
        return proto[name].apply(this, arguments);
    },
});
0
Alan

インスタンス化時に親クラスをオプションとして渡します。

BaseModel = Backbone.Model.extend({
    initialize: function(attributes, options) {
        var self = this;
        this.myModel = new MyModel({parent: self});
    } 
});

次に、MyModelでこのような親メソッドを呼び出すことができます

this.options.parent.method();これにより、2つのオブジェクトに保持サイクルが作成されることに注意してください。そのため、ガベージコレクターにジョブを実行させるには、オブジェクトの1つで保持が完了したら手動で破棄する必要があります。あなたはアプリケーションがかなり大きい場合。イベントが正しいオブジェクトに到達できるように、階層設定をさらに検討することをお勧めします。

0
Blaine Kasten