-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Directly modifying the URL path & search without any side effects. #3789
Comments
Can you make a demo? I tried to call both |
Yes I was using ui-router state machine to do routing. Well regardless of whether it gives digest errors or nothing happening, manipulating the URL doesn't seem possible...? |
Are you saying that |
Well when I tried it gave me digest errors. Are saying it works for you? |
If you replace the location outside of AngularJS it gets its knickers in a twist. |
Would it be possible to simply patch the location service to force a cosmetic change if possible? |
I am going to look into this as it is going to be a problem for my github chrome extension. |
From what I understand, you can already accomplish this with either:
I have a modal services I implemented a wile ago that watches I'm moving this to |
I know about those methods, but they only affect the hash or query parameters, not the path. Try using it with html5 urls. It doesn't work.From: Brian Ford Sent: Thu, Oct 3, 2013 07:38To: angular/angular.js angular.js@noreply.github.comCC: Roger Qiu roger.qiu@polycademy.comSubject: Re: [angular.js] Directly modifying the URL path & search without any side effects. (#3789)From what I understand, you can already accomplish this with either: reloadOnSearch: false I'm moving this to 1.2.1, but I think this can be closed. —Reply to this email directly or view it on GitHub. |
@CMCDragonkai Did you ever find a solution for this? I need to change to do a history.replaceState outside of angular and digest is going crazy because of what @petebacondarwin said. |
I hacked up this solution using ui-router, but only with 0.4.0 not the latest version. To elegantly solve this problem, I think you will need to create the equivalent of ui-router and abstract the entire routing mechanism from AngularJS so that you can strictly control how routes map to the state changes. Sadly no easy solution as of yet. Check the issues of ui-router. |
I am also having this problem. I'm trying to update the URL as a user scrolls, and it seems Angular has no desire to let this happen. The closest hack I've managed is using It would be great if there was a way to update |
now you should use the |
+1, still not working; |
I still don't see why this would be useful (assuming you rely on client side routing). Why change the URL to something that doesn't have any meaning (or a different meaning) in Angular? Wouldn't that break routing (e.g. deep-linking, forward/backward actions etc)? Off the top of my head, it should be possible (famous last words 😄) to implement something in |
In my case, I have a temporary param that tells me where to scroll when the page loads. After it's done scrolling, I want to remove that param, without refreshing/reloading etc. |
This sounds like a good candidate for the hash, not part of the path. Also, removing it means that if the user copy-pastes the URL, they won't be taken to the same spot as they were taken by the initial URL (before the extra param was removed). That sounds confusing and unnecessary to me (but maybe I don't understand the usecase correctly). (Not sure what |
Sorry, meant |
Hash is different in that Btw, I have submitted a PR that let's you configure a route to not reload when the URL changes (#15002). |
@gkalpak Here's my use case where I need to update the url (to allow deep linking) but NOT update the browser history: Example url states:
The browser back history we want though, instead of 4 entries, is only the last one:
How can we achieve this? |
@lukemadera, your usecase doesn't sounds related to this issue. I think |
Thanks for the reply @gkalpak and yes, I was able to use However, here is a related use case that I believe is this issue - a set of tabs, each with their own children routes, that refer to different sub-pages (in this case steps). Again, the desire is to be able to deep link directly to a specific (sub)route (step) but going "back" should NOT cycle through tabs, it should go to the previous page (top level route). However, as before with the table example, if you click through the steps, then click the back button, instead of coming directly back to this github issue, you cycle through the steps first. https://apps.presencetest.com/components/other/step-2
Perhaps the true issue here is we need a way to be able to specify For example with the following url changes:
The back history should only include the last one: |
Ah, whoops, I'm in the wrong repo; I just googled to get here and didn't realize this was Angular 1; I'm working with Angular 2. |
@lukemadera you aren't alone... lol... |
PArtially addressed by #15002 (in addition to the already supported |
Is it possible to directly modify the URL's path and search without any sideeffects in terms of reloading, refreshing, reinitialising, or affecting AngularJS in anyway. Basically a pure cosmetic effect.
I need this sometimes when I need to correct the URL without doing anything else.
This could be useful for overlays that need a directly accessible URL. Or when someone enters the wrong title for a particular ID. See Stackoverflow, when you change the title but enter just the ID, it will correct the title portion of the URL to be correct.
I know history.pushState can do this, but when I try this inside AngularJS it results in 10 digest errors.
The text was updated successfully, but these errors were encountered: