<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 コントローラー間の通信
投稿者は同様の記事で 2 番目のメソッドを実装する必要があります