requirejsモジュールとしてバックボーンビューがあります。問題は、ビューが初期化される前に、requirejsがhttp://localhost/remote/script/here.jsをロードすることです。スクリプトがrequirejsモジュール内にないためですか?
define([
'jquery',
'undescore',
'backbone',
'http://localhost/remote/script/here'
], function($, _, Backbone, Luajs){
var View = Backbone.View.extend({
initialize : function(options) {
},
render : function() {
this.$el.html('<p>my view</p>')
return this;
}
});
return View;
});