Changing local Storage in JS code for Service URL
var image = localStorage.getItem(Image_fileUrl);
var newurl = 'https://api.appery.io/rest/1/db/files/' + image ;
localStorage.setItem("Image_fileUrl", newurl);
Here is my code, I want to use it for calling the read service url by mapping the Image_fileUrl service to the request of url.
First, the service which get the users information from user collection will response back and map to the storage Image_fileUrl.
Nothing wrongs until this point..
I try to add https://api.appery.io/rest/1/db/files/ in front of it and give to the request of url of the read service, but its not working, it remains the same as I got from user collection