Render Multiple View/Controller Pairs
问题 I am currently rendering a list of views: <ul> {{#each newsItem in controller}} {{view App.NewsItemView contentBinding="newsItem" class="news-item" }} {{/each}} </ul> But I would like to inject a NewsItemController into each view. I've tried using render , but this only seems to support a single view, giving the exception: Uncaught Error: Handlebars error: Could not find property 'control' on object . I've found a brief mention of using control instead, but this no longer seems to be included