我已将此
stackoverflow answer中给出的程序扩展为具有一次删除所有记录的程序.但是,删除仅在批处理中发生,并且不会一次删除所有内容.
deleteAllOrg: function(){ this.get('store').findAll('org').then(function(record){ record.forEach(function(rec) { console.log("Deleting ",rec.get('id')); rec.deleteRecord(); rec.save(); }); record.save(); }); }
我也尝试过model.destroy()和model.invoke(‘deleteRecords’)但它们不起作用.
任何帮助是极大的赞赏.谢谢你的帮助!