ユーザーが 1 つのチームを持つアプリケーションがあります。
私はあなたが新しいチームを作成するフォームにいます。チームを作成すると、チームを作成するとユーザーのフラグが変更されるため、API は新しいチームの json を返し、その所有者ユーザーの json も返します。
{
"team": {
"id":139,
"name":"myteam",
"manager_nickname":"Miguel",
"stadium_name":"riazr",
"user_id":10,
"next_match_id":null,
"kit_id":139
},
"users":[
{
"id":10,
"team_ready":true
}
]
}
私のアプリケーションは、コントローラーが初期化されたときにトランザクションを作成し、createRecord を呼び出してコントローラーのモデルを埋めます。このモデルの属性には、フォーム フィールドへのバインディングが自動的に入力されます。送信アクションは、クライアント側のいくつかのフィールドを検証し、すべてが正しいと思われる場合、トランザクションをコミットします。
ここにコード:
App.TeamsNewController = Ember.Controller.extend(Ember.Validations.Mixin,{
// Validations
//
// ..code omitted..
// Bindings
//
// ..code omitted..
// Observers
//
transitionAfterSave: function(){
if (this.get('model.id')){
//
// At this point the team has been successfully saved.
// App.get('currentTeam.isDirty') # => false
// App.get('currentUser.isDirty') # => true
//
// The transaction committed the changes in the team record. Committing those
// changes bring some other changes to the team's user via side-load, and those
// changes are not commited yet.
//
// I can understand it, since the commit was made before these data where
// returned, but I think that it should be a way to autocommit changes from
// sideloaded data.
// If commit a change returns side-loaded data from the server, this data should
// be commited as well. Server's word is sacred, isn't it?
//
var team = this.get('model');
App.set('currentUser.team', team);
App.set('currentTeam', team);
this.transitionToRoute('dashboard');
}
}.observes('model.id'),
// Actions
//
// This function is called in the #setupController method of the route
//
buildTeam: function(){
this.transaction = this.get('store').transaction();
var team = this.transaction.createRecord(
App.Team,
{ managerNickname: App.get('currentUser.firstName') }
);
this.set('model', team);
},
submit: function() {
var controller = this;
this.validate().then(function(){
if (controller.get('isValid')){
controller.transaction.commit();
controller.transaction = null;
}
});
}
});
コメントで言ったように、他のレコードのサイドロードされた変更を自動コミットする方法はありますか?