我有带有 Angular Kendo 作为 UI 的 AngularJS 应用程序。
从我向控制器发送广播的一项服务。
我正在从服务发送广播,如下所示:
angular.module('MyAppModule')
.service('MyService', ['$rootScope',function($rootScope)
{
this.MESSAGE = "broadcast_msg";
function sendBroadcast(message, data)
{
console.log("I get this log");
$rootScope.$broadcast(message, data);
console.log("I don't get this log");
}
function onSomeEvent(data)
{
sendBroadcast(MESSAGE, data)
}
}]);
在我的控制器中:
angular.module('MyAppModule')
.controller('MyViewCtrl', ['$scope', 'MyService', function($scope, MyService)
{
function init()
{
$scope.$on(MyService.MESSAGE, function(event, data)
{
if( data.state == "some_state")
{
process()
}
});
}
function process()
{
// Destroy and remove current screen
$("#MyView").data("kendoMobileView").destroy(); // KendoMobileView is provide by Kendo
$("#MyView").remove(); // MyView - is that ID of kendo mobile view
}
}]);
如果我发表评论destroy
并remove
打电话,那么一切正常。
但是当我添加 then 时$rootScope.$broadcats
不会在服务中返回。
我需要remove
和destroy
调用 as 来清除屏幕和相关状态。
如何解决这个问题?
更新
我正在从我的控制器中注销广播侦听器,如下所示。
// While registering listener
var deregisterMessage = $scope.$on(MyService.MESSAGE, function(event, data)
{
});
// At the time of removing screen
if( deregisterMessage != null )
{
deregisterMessage();
deregisterMessage = null;
}