0
我想創建取(定製包裝方法)自定義的方法方法是這樣的:骨幹定義集合
let personCollection = Collection.extend({
mainIndex: 'id',
url: 'https://jsonplaceholder.typicode.com/posts',
model:Person,
findAll:function(){
return this.fetch({url:this.url, type: 'POST'});
}
});
在的findAll()方法,我想改變URL路徑和HTTP方法, 但上面的代碼發送GET請求