-
Notifications
You must be signed in to change notification settings - Fork 27.4k
$location.state problems in 1.3.0-rc.5 #9545
Comments
@mzgol can you take a look at this? |
From what I see the issue is caused by the fact that I'll need to think how to bypass this issue. @bukharin Can you confirm that if you don't use numbers as state objects but objects (try e.g. passing |
Actually, I'm not sure what the issue is. What I mentioned above is true but I don't see how it can cause issues. @bukharin could you post a minimal code example showing the problem so that I fully understand what's the issue? The check in |
I see the IE11 issue in my app so I'll try to debug that first. |
As for IE11, I'm taking my jaw from the floor... In this browser, the following: history.pushState({a: 2}, 'a', 'b');
var o = history.state;
console.log(o === history.state); prints false... O_o. This means the entire logic of comparing states referentially won't work and we have to find a different approach. @IgorMinar I don't think I can fix it before Monday. I should've notice this before but EDIT: I submitted this to IE bug tracker: https://connect.microsoft.com/IE/feedback/details/998728. @bukharin Thanks for the report! It seems we actually have 2 bugs here; I'm focusing on the IE one now since it's more severe but I'd still love to get a test case to be able to fix it in Chrome/Firefox later. |
Note to self: try to avoid the issue by caching EDIT: that idea probably won't work since: history.pushState({a: 2}, 'a', 'b');
history.state === history.state; // false It seems the object is deserialized on read so every read will get sth different. |
@IgorMinar The only workaround I see is to attach the internal EDIT: we could also attach this |
@mzgol I try to create sample fiddle to demonstrate the problem: http://jsfiddle.net/ckhhqko3/1/ Steps to reproduce:
|
@mzgol so how about we go back to the wrapper object idea in which case the wrapper would be |
@IgorMinar The wrapper would have to be saved in I was wrong, though, caching works. After all, in all browsers creating a new history entry and going back will create a different instantiation of A PR to follow. |
IE 10-11+ deserialize history.state on every read, causing simple comparisons against history.state always return false. Account for that caching `history.state` on every hashchange or popstate event. Also, prevent firing onUrlChange callbacks twice if both popstate and hashchange event were fired. Closes angular#9587 Refs angular#9545
PR for the IE issue: #9587. I still need to investigate the other part of this issue. |
IE 10-11+ deserialize history.state on every read, causing simple comparisons against history.state always return false. Account for that caching `history.state` on every hashchange or popstate event. Also, prevent firing onUrlChange callbacks twice if both popstate and hashchange event were fired. Closes angular#9587 Refs angular#9545
IE 10-11+ deserialize history.state on every read, causing simple comparisons against history.state always return false. Account for that caching `history.state` on every hashchange or popstate event. Also, prevent firing onUrlChange callbacks twice if both popstate and hashchange event were fired. Closes angular#9587 Refs angular#9545
IE 10-11+ deserialize history.state on every read, causing simple comparisons against history.state always return false. Account for that caching `history.state` on every hashchange or popstate event. Also: 1. Prevent firing onUrlChange callbacks twice if both popstate and hashchange event were fired. 2. Fix the issue of routes sometimes not firing the URL change in all browsers. Closes angular#9587 Fixes angular#9545
I might have been able to fix the issue, I need to think how to write a test for it. @bukharin Could you check that the issue is fixed with Thanks for the test case! It helped a lot. EDIT: URLs to angular files changed. |
IE 10-11+ deserialize history.state on every read, causing simple comparisons against history.state always return false. Account for that caching `history.state` on every hashchange or popstate event. Also: 1. Prevent firing onUrlChange callbacks twice if both popstate and hashchange event were fired. 2. Fix the issue of routes sometimes not firing the URL change in all browsers. Closes angular#9587 Fixes angular#9545
@mzgol It seems ok, thanks |
@mzgol $location.state(obj).replace() method trigger $routeChangeSuccess and $locationChangeSuccess events. Is it ok? |
It's intended. States and URLs are changed by the browser at the same time. If we decided that we shouldn't trigger those events on
and not trigger it/them only in case of |
@mzgol I think that $location.state() should not trigger this events, because actually this method do not change route/location. May be $location.state() should trigger $routeUpdate event? Or create a new events for this one? |
@bukharin Anyway, 1.3.0 final is out and any change to those events would be a breaking change so I don't think anything can be changed here. cc @IgorMinar You can easily handle it on your side, can't you? |
My application stores some data in history state object. Before rc.5 version I used history.replaceState method. Now I rewrite my code to use new API: $location.state(obj).replace()
For instance:
It seems works fine, but when I click 'back' browser button (popstate event) - after that application stops responding on any link clicks (routes does not changes).
After investigate the source code I found that condition at angular.js:10905 always falsy
oldState and$location.$ $state are equals after user click on the link
This problem in Chrome and FF. IE11 throws an exception after bootstrap:
The text was updated successfully, but these errors were encountered: