我正在尝试使其中一个选项卡处于活动状态(选项卡已经在模板中),具体取决于一些 url 参数。不幸的是,默认情况下它总是激活在 html 模板中找到的第一个,即使我在本例中使用 ng-repeat 也是如此。
这不起作用:
$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/