我已经创建了这样的模型和集合:
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的参数附加到请求中吗?
答案 0 :(得分:1)
尝试:
testCollection.fetch({ cache: false });