组件的动态控制器绑定

时间:2016-02-24 13:08:09

标签: javascript angularjs

是否可以像指令一样使用动态控制器绑定?我尝试为Angular 1.5 Components实现相同的行为。

指令示例

angular.module('myApp',[]).

directive('addIcons', function(){
return {
    restrict : 'A',
    scope:{},
    controller : "@",
    name:"controllerName",    
    template:'<input type="button" value="(+) plus" ng-click="add()">'
  }
}).
controller("IconsOneCtrl",function($scope){
     $scope.add = function(){
        alert("IconsOne add ");
      }
}).
controller("IconsTwoCtrl",function($scope){
     $scope.add = function(){
        alert("IconsTwo add ");
      }
});

0 个答案:

没有答案