码迷,mamicode.com
首页 > Web开发 > 详细

[AngularJS] Directive using another directive by 'require'

时间:2014-12-19 07:02:29      阅读:582      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   io   color   sp   for   on   div   

Directive can use another directive though ‘require‘ keyword. 

 

angular.module(‘docsTabsExample‘, [])
.directive(‘myTabs‘, function() {
  return {
    restrict: ‘E‘,
    transclude: true,
    scope: {},
    controller: function($scope) {
      var panes = $scope.panes = [];

      $scope.select = function(pane) {
        angular.forEach(panes, function(pane) {
          pane.selected = false;
        });
        pane.selected = true;
      };

      this.addPane = function(pane) {
        if (panes.length === 0) {
          $scope.select(pane);
        }
        panes.push(pane);
      };
    },
    templateUrl: ‘my-tabs.html‘
  };
})
.directive(‘myPane‘, function() {
  return {
    require: ‘^myTabs‘,
    restrict: ‘E‘,
    transclude: true,
    scope: {
      title: ‘@‘
    },
    link: function(scope, element, attrs, tabsCtrl) {
      tabsCtrl.addPane(scope);
    },
    templateUrl: ‘my-pane.html‘
  };
});

 

The myPane directive has a require option with value ^myTabs. When a directive uses this option, $compile will throw an error unless the specified controller is found. The ^ prefix means that this directive searches for the controller on its parents (without the ^ prefix, the directive would look for the controller on just its own element).

[AngularJS] Directive using another directive by 'require'

标签:style   blog   ar   io   color   sp   for   on   div   

原文地址:http://www.cnblogs.com/Answer1215/p/4173057.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!