<script>
$(function() {
$.ajax({
url:'http://127.0.0.1:8000/api/',
type:'GET', //这里可以改方法‘POST’
dataType:'json',
success:function(res) {
if(res.status=='200'){
$('img').attr('src','http://127.0.0.1:8000/media/'+res.data.goods[0].goods_img)
}
}
})
})
<script>
$(function() {
$.ajax({
url:'http://127.0.0.1:8000/api/',
type:'GET', //这里可以改方法‘POST’
dataType:'json',
success:function(res) {
if(res.status=='200'){
$('img').attr('src','http://127.0.0.1:8000/media/'+res.data.goods[0].goods_img)
}
}
})
})