了解何时从 ember-data 中的远程存储中检索到实体的最佳方法是什么?
我需要调用以检索数据,但我需要从获取的 ember-data 对象中获取一些值。
目前我正在使用这种方法,但我相信有更好的方法。
contactLoaded: function(){
if(!this.getPath('contact.isLoaded')){
return;
}
//make call
}.observes('App.contact.isLoaded')
了解何时从 ember-data 中的远程存储中检索到实体的最佳方法是什么?
我需要调用以检索数据,但我需要从获取的 ember-data 对象中获取一些值。
目前我正在使用这种方法,但我相信有更好的方法。
contactLoaded: function(){
if(!this.getPath('contact.isLoaded')){
return;
}
//make call
}.observes('App.contact.isLoaded')