-
Notifications
You must be signed in to change notification settings - Fork 27.4k
$location injection causes / insertion after hash on page refresh when not in html5mode #8675
Comments
Seems that the cause of the issue here is: // make sure path starts with '/';
if (locationObj.$$path && locationObj.$$path.charAt(0) != '/') {
locationObj.$$path = '/' + locationObj.$$path;
} in location.js. No time to investigate further more atm. |
Getting the same problem. |
I've taken a look at this issue, I've created a plunker: http://plnkr.co/edit/UVmB1EiZAQ0urL5HrVJ1?p=preview It seems to me the problem is a bit more complex than just the 3 lines copied by francescozaia. It seems to be the expected behavior. So I've been tempering a bit with either:
So i'm wondering if this is a real bug, and if it's fixable without a breaking change. |
Yep, there is probably a lot of routing behaviours bound to those 3 lines indeed. BTW, in my opinion this is a real bug, because fragments should work as they are part of HTML specs: http://www.w3.org/TR/html401/intro/intro.html#fragment-uri |
I've actually gone through http://www.ietf.org/rfc/rfc3986.txt that according to https://docs.angularjs.org/guide/$location the location service follows. I've noticed that :
Is not compatible with the test:
Which clearly doesn't break the path on the first "#". Hope my research will help the next person taking on that issue. |
This commit adds a new `fixHashFragmentLinks` method to `$locationProvider`. This method fixes incorrect rewriting of hash fragment links. In order to use in your project, you need to enable the new behavior: ```js myApp.config(function($locationProvider) { $locationProvider.fixHashFragmentLinks(true); }); ``` In addition, you need to inject the `$anchorScroll` service to one of your controllers/services, to enable automatic anchor scrolling. Closes angular#8675
This commit adds a new `fixHashFragmentLinks` method to `$locationProvider`. This method fixes incorrect rewriting of hash fragment links. In order to use in your project, you need to enable the new behavior: ```js myApp.config(function($locationProvider) { $locationProvider.fixHashFragmentLinks(true); }); ``` In addition, you need to inject the `$anchorScroll` service to one of your controllers/services, to enable automatic anchor scrolling. Closes angular#8675
Actually this is not a bug - it works as designed. Hashbang mode, as its names suggests should use a Unfortunately we seem to have provided a default of just I think the best course of action is to change our default hash prefix to |
The hashbang is going to be ! by default starting in 1.6 |
When not in html5mode, and using a URL of the format
example.com/example#param=params
, refreshing the page will automatically cause the URL to be rerouted toexample.com/example#/param=params
. In the particular case I am encountering, angular isn't being used for routing at all, and this functionality is undesired.Related to #4608.
The text was updated successfully, but these errors were encountered: