<script type="text/x-handlebars" data-template-name="item-view">
{{#with view.content.json}}
<tr>
<td>{{unbound artistName}}</td>
<td>{{unbound price}}</td>
<td>{{unbound primaryGenreName}}</td>
<td>{{unbound version}}</td>
</tr>
{{/with}}
</script>
<table>
<script type="text/x-handlebars">
{{view Em.CollectionView itemViewClass="App.ItemView" contentBinding="App.itemsController"}}
</script>
</table>
上記のテンプレートの HTML テーブル タグは、ember-1.0.pre.js を使用して削除されます。多くの値がある結果のテーブルを出力するためのこれよりも適切なパターンはありますか?
「 Handlebars.js: Nested templates strip "safe" HTML」という投稿は、タグを保持するというテーマに関連しているように見えますが、Ember はこれに独自の抽象化を追加しています。