以下save
函数提交整个商店。我怎样才能提交this
? this.commit();
不起作用。
app.js
App.UserController = Ember.ObjectController.extend({
save: function() {
this.get('store').commit();
}
})
答案 0 :(得分:1)
您可以创建事务,向其添加记录,然后提交(或回滚)事务:
startEditing: function() {
this.transaction = this.get('store').transaction();
this.transaction.add(this.get('content');
},
save: function() {
this.transaction.commit();
}