I have a question similar to this one, but different.
Here I am trying to add an event listener for a window.postMessage
handler.
app.run(function ($location, $window, $rootScope) {
$window.addEventListener('message', function(e) {
$location.path("/abc");
console.log($location.path()); // this prints "/abc" as expected
$rootScope.$apply(); // this has no effect
$scope = angular.element(document).scope(); // this is the same as $rootScope
$scope.$apply(); // so this also has no effect
});
});
The $location.path
isn't being recognised by Angular.
The other question says that I should call $apply()
on the scope, but the only scope available to me is $rootScope
and calling $apply()
on that doesn't seem to work.
A comment on the answer suggests that a scope can be got with
$scope = angular.element(document).scope()
but this gives me the $rootScope
, which doesn't work.
How do I get angular to regocnise the change in $location.path()
? Is there a better way to register a message
callback in such a way as I can change the path?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…