我可以在控制器上加载整页吗?角

时间:2017-01-18 16:20:36

标签: angularjs

我想从1个控制器转到另一个控制器时加载整页。这有可能在$ destroy中检测到吗?

1 个答案:

答案 0 :(得分:1)

您可以像使用$destroy的任何事件一样捕捉$scope.$on("$destroy")事件。这是一个例子:

module.controller("TestController", function($scope) {    
    $scope.$on("$destroy", function() {
        console.log("Destroyed!");
    });
});