最佳答案
在 文件之后,我做到了:
var collection = new Backbone.Collection.extend({
model: ItemModel,
url: '/Items'
})
collection.fetch({ data: { page: 1} });
网址是: http://localhost:1273/Items?[object%20Object]
我还以为是 http://localhost:1273/Items?page=1呢
那么,如何在 get 方法中传递 params 呢?