30以上のモジュールを持つアプリケーションには、バックボーン+必須を使用する予定です。モジュールごとに別々のルートを作成するのではなく、このようなものを作成する予定です。Backbone.js - 大きなサイトの動的ルーティング
これがベストプラクティスであるかどうかわかりません。ご案内ください。
routes: {
":module" : "routeLevelOne",
":module/:id" : "routeLevelTwo",
},
routeLevelOne: function(module){
require(['views/' + module + 'View',],
function(){
require('views/' + module + 'View').render();
}
);
},
routeLevelTwo: function(module, id){
require(['views/' + module + 'View',],
function(){
require('views/' + module + 'View').renderWithId(id);
}
);
},