0
「ミックスインパターン」に基づいてサンプルコードを作成します。ミックスインパターンアンダースコア、_.extendキーワードを使用
私は以下のようなコードを持っています。
define(["jquery","underscore", "backbone"], function($, _,Backbone) {
//Mixin :
//
/* Sometimes you have the same functionality for multiple objects
* and it doesn’t make sense to wrap your objects in a parent object.
* For example, if you have two views that share methods but don’t
* – and shouldn’t – have a shared parent view.
*/
//I can define an object that has attributes and methods that can be shared across different classes.
//This is called a mixin.
//Mixin Object
var C = Backbone.Model.extend({
c: function() {
console.log("We are different but have C-Method shared");
}
});
//To be Mixin-ed Object-1
var A = Backbone.Model.extend({
a: 'A',
});
//To be Mixin-ed Object-2
var B = Backbone.Model.extend({
b: 'B'
});
//underscore
_.extend(A.prototype, C);
_.extend(B.prototype, C);
return Backbone.Model.extend({
initialize: function(){
var testA = new A();
testA.c();
var testB = new B();
testA.c();
}
});
});
このコードを実行すると、 'testA.cは関数ではありません'というエラーが表示されます。 私が研究したいくつかのコード例で判断すると、これはうまくいくはずです。 このコードが可能な限り詳細に機能しない理由について教えてください。
'_c'プロパティを定義しましたが、' c'( 'testA.c()')を呼び出しました。私は彼らが同じであるべきだと思う。 –
私はそれを変更...しかし、同じエラーの下で動作しません。別の理由があると思う。 –