我想从带有参数的特定 url 获取模型: url: server/somecontroller/id/?type=gift
简单的工作方式是:
collection.fetch({ data: { type: 'gift'} });
但我想在模型中设置它:
...
if(id){
App.coupon = new AffiliatesApp.Coupon({id: id});
} else {
App.coupon = new AffiliatesApp.Coupon({id: 'somecontroller'}, {type: 'gift'});
}
App.coupon.fetch();
我怎样才能实现它?