我有一个调用服务的控制器。在服务中,我执行了一个 $rootScope.$broadcast ,它在页面加载时完美运行。但是,当我再次调用该服务时,似乎没有调用 $rootScope.$broadcast。
控制器:
app.controller('MyController', function($scope, myService) {
myService.inititate($scope);
$scope.Next = function () {
myService.next($scope);
};
});
服务:
app.service("loginService", function ($http, $rootScope) {
var counter = 0;
var checkuser = function (scope) {
//some code.....
$rootScope.$broadcast('rcvrCast', counter + 1);
}
this.inititate = function (scope) {
//some code.....
checkuser(scope);
};
this.next = function (scope) {
//some code.....
checkuser(scope);
};
);
指示:
app.directive('myDirective', function() {
return {
restrict: 'A',
replace: true,
scope: {},
link: function(scope, element, attrs) {
scope.$on("rcvrCast", function(event, val) {
scope.myValue = val;
});
},
template:
'<section>' +
'<p>{{myValue}}</p>' +
'</section>'
}
});
HTML:
<body ng-controller="ParentController">
<section my-directive></section>
<div ui-view></div>
</body>
index.html
页面加载MyController
控制器。
在页面加载时,被$broadcast
调用的 fromthis.inititate
被成功调用并{{myValue}}
显示为 1。
但是,单击我的按钮ng-click="Next()"
时,尽管再次调用该服务,但{{myValue}}
仍显示为 1,而不是 1 + 1 = 2。
有什么想法吗?