我创建了一个这样的模型和集合:
var TestModel = Backbone.Model.extend({
initialize: function () {
},
defaults: {
'id': null,
'title': '',
'description': ''
}
});
TestCollection = Backbone.Collection.extend({
model: TestModel,
url: function () {
return 'Test/GetAll';
},
});
然后我有一个视图,我尝试像这样加载:
var testCollection = new TestCollection();
var testListView = new TestListView({ collection: testCollection });
testCollection.fetch();
但它会创建一个请求,例如:
Test/GetAll?_=1349272902901
失败。你们有谁知道为什么它将这个类似 id 的参数附加到请求中?