我有这个可以旋转 div 元素的视图。就像是
<div class="rotatable">
<div class="front">
{{outlet front}}
</div>
<div class="back">
{{outlet back}}
<div>
</div>
现在我有了这个索引模板,其中包含其中两个可旋转元素。每个可旋转元件具有不同的正面和背面。所以它可能看起来像这样
<div id="index">
{{#rotatable}}
{{outlet front App.FrontView1}}
{{outlet back App.BackView1}}
{{/rotatable}}
{{#rotatable}}
<div>This should show up inside {{outlet front}}</div>
{{outlet back App.BackView2}}
{{/rotatable}}
</div>
这当然行不通,但是应该怎么做呢?
干杯