I am currently creating a search function in AngularJS 1. I am using Restangular in order to communicate between my JS frontend and an API.
I was wondering however, does AngularJS or Restangular in particular, strip out certain characters from my request?
I am doing a get request as follows using Restangular:
Restangular.all('details').get(detail_id).then(function(detailResult) { // etc...
However this works if detail_id is set to: 2019 but when detail_id is set to: 2019#1
Then Restangular (I assume) automatically strips off the #1 and I don't see this on the server side.
Am I making a mistake here or is this a limitation to Get requests with Restangular or alternatively is this working as intended and I have missed something?
Any help is appreciated, Thanks