I'm using httpclient get, when I have a #
in the request URL it removes everything after the #
Example:
Intended Request:
https://jsonplaceholder.typicode.com/users/1#TEST
Actual Request:
https://jsonplaceholder.typicode.com/users/1
I tried using PathLocationStrategy, but its only effecting router links.
Made a slackblitz example, it has the PathLocationStrategy also.
Stackblitz: https://stackblitz.com/edit/angular-http-client-p5yrdq
- Why does this happen?
- Any solutions/workaround?