我正在使用emberData 3.5.0,其中我已从商店更改了记录,并且我的视图处于编辑模式。 然后当我按取消时,即时通讯试图从后端获取记录并在商店中更新。 因此,在我的取消操作中,我致电
this.store.findRecord( 'profile', id, {reload:true}).then( response => {
this.controllerFor( 'people/profile' ).set( 'user',response);
this.controllerFor( 'people/edit' ).set( 'person',response );
})
但是问题是我在编辑模式下更改的肮脏记录不会通过此调用刷新。 (服务器调用将用于记录)。
我在ember和论坛中尝试了所有参考,但是我找不到解决方案。