1

我想在获取时传递参数并使用 {reset:true} 。

我怎样才能做到这两点?

代码

App.Collections.Items = Backbone.Collection.extend({

   model : App.Models.ItemInfo,
   url : "api/category/category123/city"

});

var itemCollection = new App.Collections.Items();
itemCollection.fetch({reset : true});

http://127.0.0.1/api/category/city?p=1&ps=4

如何将 p=1 和 p=4 作为参数与 reset 一起传递?

4

1 回答 1

1

你可以这样做:

var itemCollection = new App.Collections.Items();
itemCollection.fetch({data: {p: 1, ps: 4 }});
于 2013-10-14T11:49:53.823 回答