In my backend i have route to get images that called /images And route to upload images that called images/new/
And i used multer to upload the images. I created path to multer that called /uploads
now my question is When i call with axios from the frontend. If i want to get the images what i should put in the url?
Right now i write :
<Image source={require("../../server/uploads/" + item.imageUrl)} /> (image won't show up & get syntax error). 2: <Image source={"http:8080//uploads/k2.jpg")} /> (image dont show up)
And when i doing post method which url i need to send?
I used react native nodejs mongoose