在AngularJS的指令中使用控制器名称(ng-controller)的表达式

时间:2013-04-03 11:01:48

标签: javascript html angularjs

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

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

e.g。我想做什么

<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?我确信我完全不理解指令的概念,所以我犯了一个错误?

1 个答案:

答案 0 :(得分:0)

我会推荐这种结构:

<sample-drtv></sample-drtv>

模板(sampleDrtv.html):

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

AngularJS Part:

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