data i’ve got from server:
JavaScript
x
9
1
[
2
{
3
"id": 29,
4
"name": "atlas",
5
"image": "/media/images/images-4.jpeg",
6
"price": 67473,
7
},
8
]
9
in React:
JavaScript
1
6
1
//...code
2
console.log(this.props.img); //>>> /media/images/images-4.jpeg
3
//...code
4
<img src={this.props.img} alt='image' width='100%'/>
5
//...
6
in Django:
I think there is no problem in django. I made a template and tried to show image, and it worked.
So, how do I show image in React ?
Advertisement
Answer
Api returning only path of image .so append base url before image link like below
JavaScript
1
2
1
<img src="https://urdomain.com{this.props.img}" alt='image' width='100%'/>
2
or in django you have to send full url in image value like below
JavaScript
1
9
1
[
2
{
3
"id": 29,
4
"name": "atlas",
5
"image": "https://urdomain.com/media/images/images-4.jpeg",
6
"price": 67473,
7
},
8
]
9
so no need to append base url
JavaScript
1
2
1
<img src="{this.props.img}" alt='image' width='100%'/>
2