以下save
函数提交整个商店。我怎么能只承诺this
?this.commit();
不起作用。
应用程序.js
App.UserController = Ember.ObjectController.extend({
save: function() {
this.get('store').commit();
}
})
以下save
函数提交整个商店。我怎么能只承诺this
?this.commit();
不起作用。
应用程序.js
App.UserController = Ember.ObjectController.extend({
save: function() {
this.get('store').commit();
}
})