AngularJS将变量从自定义指令传递给模板

时间:2015-04-01 06:45:11

标签: javascript angularjs directive

我制作了一个自定义指令:

js part:

angular.module("myDirectives", []).directive("ngShowbox", function(){
  return {
    restrict: "E",
    scope: {
      title: "="
    },
    template: "<a href='#' ng-click='show($event)'>{{title}}</a>",
    controller: function($scope, $element){
      $scope.show = function(event){
        // do something...
      }      
    }
  }
});

html部分:

<ng-showbox title="whatToPutHere??"></ng-showbox>

我想传递title属性中的一些文字, 然后我的模板将显示文本。 我该怎么做?

非常感谢:)

1 个答案:

答案 0 :(得分:6)

在指令范围内使用@: -

scope: {
      title: "@"
    },

Plunker为你:)