0

我创建了一个这样的模型和集合:

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 的参数附加到请求中?

4

1 回答 1

1

尝试:

testCollection.fetch({ cache: false });
于 2012-10-03T14:09:31.517 回答