如何使用computed来监控异步加载的关系?
在下面的示例中,我希望父标题在加载到商店后立即显示。
https://emberjs.jsbin.com/yakofaxazu/1/edit?html,js,console,output
答案 0 :(得分:2)
不需要计算道具。
只需在模板中使用以下内容:
<li>Item: {{item.title}}, Parent: {{item.parent.title}}</li>
parent
关系应该是async: true