我最近看到了这个例子。这是我第一次在指令中看到控制器。这是正常的事情吗。我认为您应该将这两个保留在不同的区域以进行可测试性:
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>'
};
})