Populating an image URL from a REST service
I have a project in which I have a rest api to get details and populate it to a list. But in the api the image part has only the name and extension of the image, ex: "a.jpeg". I need to add a url before that like "http://www.abc.com/". But inside mapping I select js in the image part of the list and i add the code
return "http://www.mywebsite.com/album-art/" + value;
in side the function. But its lot loading the images.