0

我有带有 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 
    }

}]);

如果我发表评论destroyremove打电话,那么一切正常。
但是当我添加 then 时$rootScope.$broadcats不会在服务中返回。

我需要removedestroy调用 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;
}
4

1 回答 1

0

不要$rootScope.$on从你的控制器中使用,因为即使你的控制器被销毁,事件监听器仍然存在,它会导致内存泄漏。

最好为您需要收听或广播的每个事件创建一个服务。

于 2016-10-18T06:09:46.170 回答