3

使用 Angular 1.6.6 和 ui-bootstrap 2.5.0

如果操作属性值不为空,我正在尝试使用控制器。

我的每个选项卡的逻辑都非常不同,因此我不想将所有选项卡放在一个控制器中。有没有办法解决这个问题?

行动

$scope.actions = [
    {
        slug: "basicData",
        title: "Grunddata",
        icon: "fa fa-table",
        template: templatePath + "basicData.html",
        disabled: false,
        controller: null
    }, {
        slug: "responsible",
        title: "Ansvariga",
        icon: "fa fa-address-book-o",
        template: templatePath + "responsible.html",
        disabled: false,
        controller: null
    }, {
        slug: "reportTime",
        title: "Rapportera tid",
        icon: "fa fa-clock-o",
        template: templatePath + "reportTime.html",
        disabled: false,
        controller: "ActivityTimeReportingController"
    }

];

这是我的标签集

<uib-tabset active="activePill" vertical="true" type="pills">
            <uib-tab ng-repeat="action in actions" index="$index+1" disable="action.disabled">
                <uib-tab-heading>
                    <span class='{{action.icon}}'></span>&nbsp;{{action.title}}
                </uib-tab-heading>
                <div ng-include="action.template" ng-if="!action.controller" ng-controller="action.controller"></div>
                <div ng-include="action.template" ng-if="action.controller"></div>
            </uib-tab>
        </uib-tabset>

我收到以下错误

名称为“action.controller”的控制器未注册。

花括号没有任何区别。

我也尝试过使用一个函数:

    $scope.getController = function (controllerName) {
    return controllerName.ToString();
};

在我的标签集中:

<div ng-include="action.template" ng-if="!action.controller" ng-controller="getController(action.controller)"></div>

有同样的错误信息

名称为 'getController(action.controller' 的控制器未注册。

迭代对象集合时,有没有办法动态分配 ng-controller?

4

2 回答 2

1

创建动态指令,然后为每个指令指定一个控制器,而不是使用 ng-include 滚动您自己的动态指令与模板 url 的绑定

http://www.codelord.net/2015/05/19/angularjs-dynamically-loading-directives/

如果您没有太多类型的操作..然后使用 ng-if 或 ng-switch 并使用 ng-controller 或使用控制器的指令为每个操作创建一行。imo,您尝试实现的动态代码不是正确的方法。

于 2017-12-13T14:16:06.897 回答
0

这是一个可行的解决方案:http: //jsfiddle.net/wt42nqLn/

HTML

<script type="text/ng-template" id="customControllerTemplate.html">
  Controller name: {{name}}
</script>

<div ng-controller="myCtrl">
  <div ng-repeat="controller in controllerList">
    <div custom-controller="controller.name">
      <div ng-include="'customControllerTemplate.html'"></div>
    </div>
  </div>
</div>

JS

var myApp = angular.module('myApp',[]);

myApp.controller('myCtrl', myCtrl);
myApp.controller('firstController', firstController);
myApp.controller('secondController', secondController);
myApp.directive('customController', customController);

function myCtrl($scope) {
    $scope.controllerList = [
        {
        name: 'firstController'
      },
      {
        name: 'secondController'
      }
    ]
}


function firstController($scope){
    console.log('firstController','loaded');
    $scope.name = 'firstController';
}

function secondController($scope){
    console.log('secondController','loaded');
    $scope.name = 'secondController';
}

function customController($compile){
    return {
        priority:1001, 
        terminal:true, 
        link: function(scope,element,attrs){
           var ctrlName = scope.$eval(attrs['customController']);
           element = angular.element(element.children());
           element.attr('ng-controller',ctrlName);
           $compile(element)(scope);
        }
   };          
}
于 2017-12-13T13:35:30.853 回答