Backbone.js (アンダースコアもある) を使用してプロジェクト内のモジュールを管理するために Require.js を使用している場合、モジュールを拡張するときに、次のようなことができます。
require(['Home'], function(home) {
'use strict';
var view = home.View.prototype;
_.extend(view,{
anotherTitle: 'Welcome Jean Luc Picard';
});
});
また
require(['Home'], function(home) {
'use strict';
var view = home.View.prototype;
view.anotherTitle= 'Welcome Jean Luc Picard'; //this is a new attribute
});
それを行う最も適切な方法は何ですか?