バックボーンは indexview モジュールで呼び出されません。
requirejs 2.1.5/2.1.4 および backbonejs 0.9.10 を使用
r.js実行後のmain.js
...
// this is causing the backbone to return
// null/undefined in the next define call below
define("backbone", function(){});
define('views/index/IndexView', [
'underscore',
'backbone',
'text!templates/index/indexTemplate.html'
], function(_, Backbone, indexTemplate){
console.log(Backbone); // returns undefined
var IndexView = Backbone.View.extend({
...
しかし、バックボーンをモジュールとして登録する最初の定義呼び出しを実行すると、すべて正常に動作します。ただし、backbone-min.js は個別にロードされます。しかし今のところ、スクリプトを実行する唯一の方法です。ここで間違いなく何かが欠けています。
main.js
require.config({
paths: {
underscore : 'libs/underscore/underscore-min',
backbone : 'libs/backbone/backbone-min'
templates : '../templates'
},
shim: {
'backbone': {
deps: ['jquery','underscore'],
exports: 'Backbone'
}
}
});
require(['app'], function(App){
App.initialize();
});
build.js
({
appDir: "../",
baseUrl: "js",
dir: "../../build",
optimize: "none",
paths: {
"jquery": "libs/requirejs/require-jquery",
"underscore" : 'libs/underscore/underscore-min',
"backbone": 'libs/backbone/backbone-min',
"templates": '../templates',
},
modules: [
{
name: "main",
exclude: ["jquery"]
}
]
})
私はまだバックボーンとrequirejsに足を踏み入れています。フィードバックは大歓迎です。