我的代码如下:
var AppRouter = Backbone.Router.extend({
_data: null,
_length: 0,
_index: null,
_todos: null,
_subtodolist: null,
_subtodos: null,
routes: {
"*action": "index",
"category/:name": "hashcategory"
},
initialize: function(options){
var self = this;
if (this._index === null){
$.ajax({
url: 'data/todolist.json',
dataType: 'json',
data: {},
success: function(data) {
self._data = data;
self._todos = new TodosCollection(data);
self._index = new CategoriesView({collection: self._todos});
//self._index.render();
}
});
return this;
}
return this;
},
index: function(){
this._index.render();
},
....
但是当我开始时,萤火虫控制台面板总是告诉我函数this._index
中为空index
。我必须self._index.render()
在回调函数的底部使用$.ajax success
才能使主页呈现(上面已注释掉)。似乎index
函数在函数之前initialize
运行。这怎么可能发生,我该如何解决?
顺便说一句,在 中routes
,如果我使用"": "index"
,它将不起作用。我必须使用"*action": "index"
. 但我在其他地方了解到默认 url 可能只是空字符串。为什么我不能在这里使用它?