我想在获取时传递参数并使用 {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 一起传递?