型号删除记录Ember
Model Delete Record Ember
我在这个 example 中重现了我的问题,我已经创建了在发票中添加和删除交易的操作,问题是在我的 Ember-data 中删除的交易没有被删除记录。
这是我做错事的代码
actions: {
add: function() {
var transactionRecord = this.store.createRecord('transaction', {
name: 'new transaction',
isChecked: false
});
return this.get("model.transactions").addObject(transactionRecord);
},
remove: function() {
var allSelectedItems = this.get("model.transactions").filterBy("isChecked", true);
return this.get('model.transactions').removeObjects(allSelectedItems).deleteRecord(transactionRecord);
},
}
<td><button {{action "add"}}>Add New Transaction</button>
<button {{action "remove"}}>Remove Transaction</button></td>
虽然我可以删除交易对象,但在调试时我仍然可以在记录数据中看到交易
要删除的交易是选中的交易
我附上显示问题的图片:
删除前
删除后
正如您所见,删除后交易数量仍然是 3
我删除记录做错了什么?
您可能需要遍历数组并单独删除每条记录:
remove: function() {
var allSelectedItems = this.get("model.transactions").filterBy("isChecked", true);
this.get('model.transactions').removeObjects(allSelectedItems)
allSelectedItems.forEach(function(item) {
item.deleteRecord();
});
}
另外,行动从不 return 任何东西所以不需要 return
。
我在这个 example 中重现了我的问题,我已经创建了在发票中添加和删除交易的操作,问题是在我的 Ember-data 中删除的交易没有被删除记录。
这是我做错事的代码
actions: {
add: function() {
var transactionRecord = this.store.createRecord('transaction', {
name: 'new transaction',
isChecked: false
});
return this.get("model.transactions").addObject(transactionRecord);
},
remove: function() {
var allSelectedItems = this.get("model.transactions").filterBy("isChecked", true);
return this.get('model.transactions').removeObjects(allSelectedItems).deleteRecord(transactionRecord);
},
}
<td><button {{action "add"}}>Add New Transaction</button>
<button {{action "remove"}}>Remove Transaction</button></td>
虽然我可以删除交易对象,但在调试时我仍然可以在记录数据中看到交易
要删除的交易是选中的交易
我附上显示问题的图片:
删除前
删除后
正如您所见,删除后交易数量仍然是 3
我删除记录做错了什么?
您可能需要遍历数组并单独删除每条记录:
remove: function() {
var allSelectedItems = this.get("model.transactions").filterBy("isChecked", true);
this.get('model.transactions').removeObjects(allSelectedItems)
allSelectedItems.forEach(function(item) {
item.deleteRecord();
});
}
另外,行动从不 return 任何东西所以不需要 return
。