Upload image without extension in webapp

0

I have a webapp made in Angularjs and Ionic. At some point I upload images from a webservice, however these images do not have extension, being something of the type, link . When I run the app in the browser, the image loads normal, however when compiling for Android or iOS the image simply does not open ...

I'm loading the image into a <img ng-src="https://servidor.com/usuario/avatar/128/128"/> tag

Has anyone ever gone through this? How to correct?

Abs

    
asked by anonymous 15.03.2016 / 14:26

1 answer

-1

Try loading your img with:

img / image.pngo

Instead of

/img/image.png

I had this same problem and this was my solution.

    
19.08.2016 / 01:22