我想使其中的一個選項卡處於活動狀態(選項卡已經在模板中),具體取決於一些url參數。不幸的是,即使我在本例中使用了ng-repeat,它仍然會在默認中成爲第一個在html模板中找到的活動。如何在Angular Bootstrap UI中開始激活標籤頁?
這不起作用:
$scope.tabs = {
title2: {active:false, content:"Hello world 2!"},
title3: {active:false, content:"Hello world 3!"},
title4: {active:false, content:"Hello world 4!"}
}
$scope.tabs.title4.active = true;
這裏是一個小提琴:http://jsfiddle.net/alexrada/KFAXH/5/
[在角引導中設置初始靜態選項卡]的可能的重複(http://stackoverflow.com/questions/17695629/setting-the-initial-static-tab-in-angular-bootstrap)。一個錯誤已經提交:https://github.com/angular-ui/bootstrap/issues/678 –
重複是現貨。請參閱@ Thomas的答案。另外[問題#747](https://github.com/angular-ui/bootstrap/issues/747)和[拉#834](https://github.com/angular-ui/bootstrap/pull/834)是什麼似乎是最終的修復(至少對我來說)。 – Amir