我有一组静态角度引导标签:
<tabset>
<tab heading="Static title" select="remember(0)">Static content</tab>
<tab heading="Another title" select="remember(1)">Static content</tab>
<tab heading="Another title" select="remember(2)">Static content</tab>
</tabset>
我创建了一个函数来存储上次选中的选项卡。但是,我似乎找不到从控制器到选择给定标签的方法。
网站上的示例是动态标签,是从转发器中的数组创建的。那么像$scope.tabs[0].active = true;
这样的东西就足够了。
但是,这些标签只是标记而不是数组,并没有说明如何(或是否)可以从控制器中选择其中一个标签。
如果可以的话,我更喜欢使用静态标签,因为我不想使用包含。
思考?我从UI-Bootstrap here分发了示例。
答案 0 :(得分:4)
您可以使用active
属性,类似于在输入中使用ng-model
的方式。 e.g。
<tabset>
<tab active="tabs[0].active" heading="Static title" select="remember(0)">Static content</tab>
<tab active="tabs[1].active" heading="Another title" select="remember(1)">Static content</tab>
<tab active="tabs[2].active" heading="Another title" select="remember(2)">Static content</tab>
</tabset>
答案 1 :(得分:1)