-
Notifications
You must be signed in to change notification settings - Fork 27.4k
$location + history.pushState = $digest infinite loop #3924
Comments
This appears to be a bug in Then on the next turn of the $digest loop it does it again, and again, and again, etc. We need a way to manage this situation in a stable manner. |
This is the exact issue i'm having in my issue as well: I totally agree that there should be a better way to manage this situation, it seems like a common and growing recurring problem. |
You're test case is a bit buggy. Could you possible address some of the errors?
|
@petebacondarwin , would a dirty check of window.location vs $location solve this? Where Angular defaults to window.location and sets $location to that when there are conflicts? |
We kept running into this error too. A work around we implemented to handle changing the URL but not anything else was to use $location.path to change the URL, then listening for $routeChangeStart and then using event.preventDefault(). This'll change the URL but stop anything else from happening. You can also do this with $stateChangeStart if you're using Angular UI Router. Nice thing about this versus pushstate is that it works on ie 8 and 9 without having to use history.js |
For anyone else that needs a hack to get by I have a little write up here: angular-ui/ui-router#562 (comment) |
This is affecting us too. A fix would be very nice. |
Same here, trying to update URL without trashing controllers (btw. it works well when used from the dev console, but gets crazy when using from angular code) |
Just ran into this as well. Any solid workarounds? |
Same thing here, anything reliable out there? |
same problem =/ |
Temporary fix: Tested for angularjs on browsers.
|
I has infinite loop with this in Iphone and Ipad. 2014-07-10 8:26 GMT-03:00 ryanjohnvelasco notifications@github.com:
Rodrigo Mendonça |
Hi, this is a dupe of #6976 which was just fixed. |
See 3be00df. |
This is still happening on v1.2.25 which has your fix above I believe @tbosch. |
Here is the test-case: http://jsbin.com/IxAGEzI/1/
We used Angular on page with some old code, which uses history.pushState to change the url at some point. After that, when entering digest loop, it goes crazy and "Infinite $digest Loop" error happens.
So should Angular work fine in that situation or not?
The text was updated successfully, but these errors were encountered: