2

我不想使用指定控制器名称,而是ng-controller想通过指令中的属性指定控制器名称,然后在模板中替换它(我想以这种奇怪的方式来探索 AngularJS)。

这是 plunk 的链接: http ://plnkr.co/edit/KZgLQ6?p=preview

例如我正在尝试做的事情

<sample-drtv ctrl-name="drtvCtrl"></sample-drtv>

模板(sampleDrtv.html):

<div ng-controller="{{ctrlName}}"> 
  <p>{{ptagcontent}}</p>  
</div>

指令代码:

var myModule = angular.module('ng');

myModule.directive('sampleDrtv',[function(){
    return {
        restrict: "E",
            replace: true,
            templateUrl: "sampleDrtv.html",
            scope: {},
            controller: function($scope,$element,$attrs){
                $scope.ctrlName = $attrs.ctrlName;
                console.log($scope);
            }
        };

}]);

function drtvCtrl($scope){
  $scope.ptagcontent = "AngularJS Rocks";  
}

我在控制台上收到此错误:

Error: Argument '{{ctrlName}}' is not a function, got undefined

关于我应该做什么以便ctrlName在表达式中替换的任何想法?我确定我不完全理解指令的概念,所以我做错了吗?

4

1 回答 1

0

我会推荐这种结构:

<sample-drtv></sample-drtv>

模板(sampleDrtv.html):

<div ng-controller="drtvCtrl"> 
  <p>{{ptagcontent}}</p>  
</div>

AngularJS 部分:

var myModule = angular.module('ng');

myModule.directive('sampleDrtv',[function(){
  return {
    restrict: "E",
    replace: true,
    templateUrl: "sampleDrtv.html"
  };
}]);

function drtvCtrl($scope){
  $scope.ptagcontent = "AngularJS Rocks";  
}

查看 Plunk:http ://plnkr.co/edit/GwnqK6?p=preview

于 2013-04-03T12:52:52.090 回答