I am trying to send .
(dot) as a string to the following aspi call in Nodejs.
I am using Angularjs $http
object.
I can see that the call is being made with the dot (.) character that I have entered in the search box.
https://localhost:3003/posts/search/.
However, when I see the ajax call through google developer tool, it is making a call as:
https://localhost:3003/posts/search/
How can I pass a dot character?
code is:
return
$http.get('https://localhost:3003/posts/search/.').then(getPostCompleted).catch(function (message) {
handleException(message);
});
I don't think I have to btoa or atob on this?
Thanks Am