1
我目前呈現的視圖列表:渲染多個視圖/控制器雙
<ul>
{{#each newsItem in controller}}
{{view App.NewsItemView contentBinding="newsItem" class="news-item" }}
{{/each}}
</ul>
但我想注入NewsItemController到每個視圖。
我使用render
嘗試過,但這個似乎只支持單一視圖,給予例外:
Uncaught Error: Handlebars error: Could not find property 'control' on object .
我發現使用control
,而不是簡單地提到,但是這似乎不再被包括在內。
那麼如何渲染同一視圖的多個版本,在每個視圖中注入一個單獨的控制器?