5

我最近看到了这个例子。这是我第一次在指令中看到控制器。这是正常的事情吗。我认为您应该将这两个保留在不同的区域以进​​行可测试性:

myModule.directive('myComponent', function(mySharedService) {
    return {
        restrict: 'E',
        controller: function($scope, $attrs, mySharedService) {
            $scope.$on('handleBroadcast', function() {
                $scope.message = 'Directive: ' + mySharedService.message;
            });
        },
        replace: true,
        template: '<input>'
    };
})
4

1 回答 1

5

通常,您会在指令中使用控制器,以便能够在元素上的指令之间共享它们。它允许指令轻松地在它们之间进行通信。

有关其工作原理的详细说明,请参见此处:http ://egghead.io/video/angularjs-directive-to-directive-communication/

于 2013-04-06T12:59:21.193 回答