<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
大写了)其次,广播的时机仍然早于接收的定义,所以始终收不到,可以做如下常识:
推荐阅读这篇文章:
angular 控制器之间的通信
楼主应该是要实现类似文章中的第二种方式