在旧版本的Ember Data中,当使用路径中的promises时,我可以编写如下代码:
this.store.find('model_name')
.then(function(models) {
//models would be ready to work with here
}
在Ember Data 1.13.15中,承诺通过AdapterPopulatedRecordArray
来实现,它仍然可以等待来自服务器的数据。我怎么知道数据何时可用?我看到AdapterPopulatedRecordArray
有一个isLoaded
属性,但看着该属性似乎是承诺过去的工作?