在uib-tab中添加带有active和ng-repeat的选项卡

问题描述 投票:0回答:2

所以我已经尝试解决这个问题有一段时间了,我看到了一篇与此类似的帖子,但没有得到答复,所以我会尝试发布此帖子,但用 plunkr 来作为示例。

所以问题是在加载时,我注意到 ui-tab 始终设置为“添加选项卡”按钮。我想要做的是让 ui-tab ng-repeat 中的第一个元素处于活动状态,而不是静态的“添加选项卡”按钮。

<uib-tabset active="activeTabIndex">
  <uib-tab ng-repeat="tab in tabs" heading="{{tab.title}}">Some content</uib-tab>
  <uib-tab heading="Add a tab" ng-click="addTab()" >Add a tab</uib-tab>
 </uib-tabset>

https://plnkr.co/edit/XrYSKLdyN1cegfcdjmkz?p=preview

我怎样才能实现这个目标?我已经研究了一段时间,但仍然不知道如何解决这个问题。

谢谢,

javascript angularjs angular-ui-bootstrap angular-ui-tabset
2个回答
3
投票

我猜你可能会喜欢这个固定插头

通过创建自己的

directive
而不是使用额外的
<uib-tab>
来实现这一点有点棘手。

示例代码:

<!doctype html>
<html ng-app="ui.bootstrap.demo">

<head>
  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.js"></script>
  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular-animate.js"></script>
  <script src="https://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-1.2.4.js"></script>
  <script type="text/javascript">
    angular.module('ui.bootstrap.demo', ['ngAnimate', 'ui.bootstrap']);
    angular.module('ui.bootstrap.demo').controller('TabsDemoCtrl', function($scope, $window, $timeout) {

      $scope.tabs = [{
        title: 'Tab1',
        content: 'content1'
      }, {
        title: 'Tab2',
        content: 'content2'
      }];
      $scope.activeTabIndex = 0;//$scope.tabs.length - 1;

      $scope.addTab = function() {
        var newTab = {
          title: 'Tab ' + ($scope.tabs.length + 1),
          content: 'content ' + ($scope.tabs.length + 1)
        };
        $scope.tabs.push(newTab);
        $timeout(function() {
          $scope.activeTabIndex = ($scope.tabs.length - 1);
        });
        console.log($scope.activeTabIndex);
      };
    });
    angular.module('ui.bootstrap.demo').directive('uibTabButton', function() {
      return {
        restrict: 'EA',
        scope: {
          handler: '&',
          text:'@'
        },
        template: '<li class="uib-tab nav-item">' +
          '<a href="javascript:;" ng-click="handler()" class="nav-link" ng-bind="text"></a>' +
          '</li>',
        replace: true
      }
    });
  </script>
  <link href="https://netdna.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
</head>

<body>
  <div ng-controller="TabsDemoCtrl">

    Active index: {{ activeTabIndex }}
    <br /> Tab count: {{ tabs.length }}
    <br />

    <input type="button" value="Add Tab" ng-click="addTab()" />

    <uib-tabset active="activeTabIndex">
      <uib-tab active="activeTabIndex==$index" ng-repeat="tab in tabs" heading="{{tab.title}}">{{tab.content}}</uib-tab>
      <uib-tab-button handler="addTab()" text="Add a tab"></uib-tab-button>
    </uib-tabset>
  </div>
</body>

</html>


0
投票

有同样的问题,用

ng-init
active
解决了:

<tabset>
    <tab
        ng-repeat="tab in tabs"
        ng-init="tab.active = $index === 0"
        active="tab.active"
        heading="{{ tab.heading }}"
    >
    </tab>
    <tab heading="Foo">
    </tab>
</tabset>    
最新问题
© www.soinside.com 2019 - 2024. All rights reserved.