美文网首页
ajax处理json

ajax处理json

作者: 上海第一撸码少年 | 来源:发表于2017-07-04 16:56 被阅读0次

<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)

}

}

})

})

相关文章

网友评论

      本文标题:ajax处理json

      本文链接:https://www.haomeiwen.com/subject/besxhxtx.html