我有这个可以旋转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>
这当然不起作用,但应该怎么做呢?
干杯