當我的應用程序加載第一次加載頁面app.dit
,但一旦你開始點擊它之後的作品的標籤,所以我想使第一片DIT
主動當應用程序加載選項卡不顯示活動。我如何用下面的代碼實現這個任務?如何使用tabset在應用程序加載時使選項卡激活?
main.html中
<uib-tabset active="active">
<uib-tab ng-repeat="tab in tabs" select="go(tab.route)" heading="{{tab.heading}}" active="tab.active" disable="tab.disabled">
<!--<div ui-view="">{{tab.route}}</div>-->
</uib-tab>
</uib-tabset>
ctrl.js
$scope.tabs = [{
heading: 'DIT',
route: 'app.dit',
active: true
}, {
heading: 'ST',
route: 'app.st',
active: false
}, {
heading: 'UAT',
route: 'app.uat',
active: false
}, ];
$scope.go = function(route) {
$state.go(route);
};
function active(route) {
return $state.is(route);
}
$scope.active = active;
$scope.$on("$stateChangeSuccess", function() {
$scope.tabs.forEach(function(tab) {
tab.active = active(tab.route);
});
});
app.js
$urlRouterProvider.otherwise(function($injector) {
var $state = $injector.get('$state');
$state.go('app.dit');
});
$stateProvider
.state('app', {
abstract: true,
url: '',
templateUrl: 'web/global/main.html',
controller: 'MainCtrl'
})
.state('app.dit', {
url: '/dit',
templateUrl: 'view/partials/dit.html',
controller: 'DitCtrl'
})
.state('app.st', {
url: '/st',
templateUrl: 'view/partials/st.html',
controller: 'StCtrl'
})
.state('app.uat', {
url: '/uat',
templateUrl: 'view/partials/uat.html',
controller: 'UatCtrl'
})
.state('app.prod', {
url: '/prod',
templateUrl: 'view/partials/prod.html',
controller: 'ProdCtrl',
})
;
我不明白爲什麼你需要''不惜一切時,你正在做的是將它們用於導航。使用tabs html和'ui-sref'和'ui-sref-active'作爲鏈接會不會很簡單? –
charlietfl
這是很難告訴你在做什麼,你錯了共享代碼...你可以發佈一個最小的小提琴手,plunkr或類似的東西? – raven
@charliefl這也是我的想法,但我的要求強制我使用uib-tabs。 – hussain