我想从1个控制器转到另一个控制器时加载整页。这有可能在$ destroy中检测到吗?
答案 0 :(得分:1)
您可以像使用$destroy
的任何事件一样捕捉$scope.$on("$destroy")
事件。这是一个例子:
module.controller("TestController", function($scope) {
$scope.$on("$destroy", function() {
console.log("Destroyed!");
});
});