#each ブロック内でビューをレンダリングしようとすると、次のように PrecompilationError が発生しますCompiler said: Error: each doesn't match view
。
例:
{{#each posts}}
{{view App.MyPost}}
<div>Some HTML here</div>
{{/view}}
{{/each}}
単一の投稿がレンダリングされる前にいくつかのことを行う必要があるため、'willInsertElement' フックを実装するにはカスタム ビュー (App.MyPost) が必要であると推測しました。私は何を間違っていますか?