进入指定页面监听
$scope.$on('$locationChangeStart', function(event, next, current) {
//expression
});
离开指定页面监听
$scope.$on('$destroy', function() {
//expression
});
$scope.$on('$locationChangeStart', function(event, next, current) {
//expression
});
$scope.$on('$destroy', function() {
//expression
});