从具有主干帖的模型中获取数据的参数很奇怪

时间:2012-10-03 14:06:27

标签: backbone.js

我已经创建了这样的模型和集合:

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

1 个答案:

答案 0 :(得分:1)

尝试:

testCollection.fetch({ cache: false });