我是 Backbone.js 的新手。我尝试在 Backbone 中创建集合,同时创建我收到错误,因为“d.collection 是未定义的错误”。
$(function(){
var MyModel = Backbone.Model.extend();
var MyCollection = Backbone.Collection.extend({
url: '/index.html',
model: MyModel
});
var coll = new MyCollection();
coll.fetch({
error: function (collection, response) {
console.log('error', response);
},
success: function (collection, response) {
console.log('success', response);
}
});
});
我还需要处理 Backbone 中的快速路由方法结果。我该如何处理..
应用程序.js
app.all('*',function(req,res){
var result={a:'a',b:'b',c:'c'};
res.writeHead(200, {'Content-Type': 'text/json'});
res.write(JSON.stringify(result));
res.end();
});