これは、Backbone ボイラープレートからのフォローアップの質問です: "this.model is undefined" . 構造の一部を解決することができましたが、新たな問題に遭遇しました。ビューの設定にlayoutManagerアダプターを使用するバックボーンボイラープレートを使用しています。メイン ビューと後続の最初のビューは、すべてのアセットを正しくロードしているように見えますが、メイン ビューがロードされる前に後続のビューが起動しているようです。私のルーター ファイルは次のとおりです。
define([
// Application.
"app",
//Modules
"modules/homepage"
],
function (app, Homepage) {
"use strict";
// Defining the application router, you can attach sub routers here.
var Router = Backbone.Router.extend({
initialize: function(){
var collections = {
homepage: new Homepage.Collection()
};
_.extend(this, collections);
app.useLayout("main-frame").setViews({
".homepage": new Homepage.Views.Index(collections)
}).render();
},
routes:{
"":"index"
},
index: function () {
this.reset();
},
// Shortcut for building a url.
go: function() {
return this.navigate(_.toArray(arguments).join("/"), true);
},
reset: function() {
// Reset collections to initial state.
if (this.homepage) {
this.homepage.reset();
}
// Reset active model.
app.active = false;
}
});
return Router;
}
);
そして、ここに私のモジュールがあります:
define([
"app",
["localStorage"]
],
function(app){
"use strict";
var Homepage = app.module();
Homepage.Model = Backbone.Model.extend({
defaults: function(){
return {
homepage: {}
};
}
});
Homepage.Collection = Backbone.Collection.extend({
//localStorage: new Backbone.LocalStorage("Homepage.Collection"),
refreshFromServer: function() {
return Backbone.ajaxSync('read', this).done( function(data){
console.log(data);
//save the data somehow?
});
},
/*model: Homepage.Model,*/
cache: true,
url: '/app/json/test.json',
initialize: function(options){
if (options) {
this.homepage = options.homepage;
}else{
//this.refreshFromServer();
}
}
});
Homepage.Views.Index = Backbone.View.extend({
template: "homepage",
el: '#mainContent',
serialize: function() {
return {
collection: this.options.homepage
};
},
initialize: function(){
this.listenTo(this.options.homepage,{
"reset": this.render,
"fetch": function(){
$(this.el).html("Loading...");
}
});
}
});
return Homepage;
});
ご覧のとおり、「メイン フレーム」テンプレートは、ページに読み込まれるメイン テンプレートです。後でホームページテンプレートをロードして、ID「#mainContent」に入力します。ただし、この場合、「#mainContent」はまだ存在しないため、ホームページ テンプレートはどこにも読み込まれません。