-
Notifications
You must be signed in to change notification settings - Fork 27.4k
View doesn't change when navigating to link #8869
Comments
Hi, Could you create a jsfiddle / plunker for your particular use case? |
Maybe we need to update our docs, especially the guide for |
I don't know if I can create a jsfiddle demonstrating the issue but if you want I could do a screen sharing session to show you. I am not trying to navigate away from my site. The link that does not work is in my header and is as follows... and the reason I am injectimg $location is to do this... var promise = companySvc.Update($scope.Company); Thanks |
This link is... href="/Portal/#/Company">Companies *With some tags stripped so it displays as text |
Ok, lets do a screen share tomorrow. How about 11am PDT? |
Could you send me your email to tbosch@google.com? |
The trick with setting `<base href=".">` has not worked since Angular 1.2.0. It is also misleading that it talks about `$routeProvider.otherwise` which is not important in this case. Related to angular#8869
Hi, We saw that Short summary so far:
|
Ah yes, and it works fine in Chrome and Firefox. |
I can confirm this using IE10 and angular 1.2.23. Also: Perhaps it is related to #9143? |
Worked around it by doing this to my
and adding this to my javascript:
|
@michaelkrog: Come on, do it right ! Make it a directive :) |
:-) Yeah, it calls for a (temporary) directive @gkalpak, but it requires Jquery and not just jqlite. I don't know if I would like a directive to do that. But for the kicks - it would be something like this: function FixIEHistoryDirective() {
return {
restrict: 'A',
link: function (scope, element, attrs) {
if($window.navigator.userAgent.indexOf('MSIE ') >= 0) {
element.on('click', 'a', function() {
$window.location.href = $(this).attr('href');
});
}
}
}
}
.........
myModule.directive('fixIeHistory', FixIEHistoryDirective); <html fix-ie-history> |
@michaelkrog: Why would it require jQuery ??? |
@gkalpak: The following page says: I'm using 'a' as a selector. |
@michaelkrog : I know. You need to be creative :)
|
just before others copy it -- FYI: That directive by @gkalpak destroys the whole application here - just tried to integrate it into our setup with ui-router as routing engine and really ugly does a whole reload on the page change... :-) |
@tspaeth: I just wrapped @michaelkrog's code into a directive. If you set |
Sure. :-) Just wanted to state that the directive probably won't fix the originating problem nor what #9143 is about... |
Good point @tspaeth, but that should "only" be the case if html5mode is true. In my case html5mode is false and it fixes my issue without any application reload on each link. Bottom of the problem for me is that I have 2 links that goes to 2 different views. It works fine, except that in IE(10&11) it will stop sending '$locationChangeStart' after a few clicks back and forth although the URL changes in the browser. The result is that the view does not change. Using this fix for an application with html5mode=false apparently makes it work in IE. I have been unable to reproduce it using a simple plunkr. I will try to boil down what I have to make a plunkr out of it. The problem does not exist in other browsers I have tried(Safari, Chrome, Firefox). |
@michaelkrog The described behavior is indeed the same as for #9143 - somehow "funny". I have also html5mode to off, but if I introduce the directive into the project, it'll rewrite the url before the ui-router state transition is ready and always lead to the "root" - "index" - state. Therefore it'll always end up with /#/ instead of the state /#/foo/bar/1 or similar. With html5mode it also occurs, true: And I have the feeling, that it'll be very hard to track down the issue "backwards" compatible... |
I think I found the bug in IE10/11 and have a very simple reproduction case, see #9143 (comment) Can you confirm that you have some links that are within the angular applications (i.e. inside of |
I can confirm that I have both links and direct changes to $location.path. |
The trick with setting `<base href=".">` has not worked since Angular 1.2.0. It is also misleading that it talks about `$routeProvider.otherwise` which is not important in this case. Related to angular#8869 Closes angular#8908
Closing this for now. Please create a a new issue when the change is not working for your use case. |
Hello, we seem to be experiencing the same issue in IE10 using Angular2. |
@yoxel not in this repo: see https://github.com/angular/angular |
There is an issue when $location is injected into a controller. Some links stop working. The URL changes but the view is not changed. The $route events are not fired either.
It has been over a year and this insidious bug is still not fixed for IE. Chrome and Firefox appear to work fine but I had to add "hacky" code in order for IE11 to navigate.
http://stackoverflow.com/questions/17835768/angularjs-view-doesnt-change-when-navigating-to-link
https://groups.google.com/forum/#!searchin/angular/link$20not$20working/angular/BsenavakfyQ/wtbRBVBxJ0sJ
The text was updated successfully, but these errors were encountered: