我尝试使用 Angular UI Bootstrap ( http://angular-ui.github.io/bootstrap/#/accordion ) 构建一个手风琴。关于如何根据选择的手风琴组设置模型。UI Bootstrap我找到了一个使用模板的工作解决方案。
在我的代码中,我添加了模板<script type="text/ng-template" id="template/accordion/accordion-group.html">
在这个模板中可以使用{{heading}}
set by <accordion-group heading="{{group.title}}" content="{{group.content}}" ng-repeat="group in groups"></accordion-group>
。
但是如何设置其他自定义模板变量?我也尝试设置content="{{group.content}}"
手风琴标签。即使设置了,我也不知道怎么用,试过{{content.group}} {{content}}
了{% content %}
。
完整代码: http: //plnkr.co/dSIVGg64vYSTAv5vFSof