<public-tips></public-tips>
app.module('demoApp', []).controller('demoController', ['$rootScope', '$scope', function($rootScope, $scope) {
$rootScope.$broadcast('to-directive', {isShow: true, content: 'hello-directive'});
})
app.directive('public-tips', function ($rootScope) {
return {
restrict: 'EA',
template: '<p class="public-tips" ng-show="msg.isShow">{{::msg.content}}</p>',
link: function (scope, ele, attr) {
scope.$on('to-directive', function (event, data) {
scope.msg = data;
console.log(data);
});
}
}
});
我在$rootScope
上分发的事件,但是在directive
里面却接受不到?
알겠습니다. 질문을 또 바꾸셨으니 저도 대답을 바꾸겠습니다.
우선
directive
是这样使用的public-tips
,那在定义时,应该定义成:app.directive('publicTips'...
(注意这里没了横线,而且t
대문자를 기대한다면)둘째, 방송의 시점은 수신의 정의보다 아직 이르기 때문에 절대 수신되지 않는다는 점을 상식적으로 생각해 보세요.
으아악이 기사를 읽어볼 것을 권장합니다:
각도 컨트롤러 간 통신
포스터는 비슷한 글에 있는 두 번째 방법을 구현하고 싶어야 합니다