如何利用ajax实现遍历后台查出的list数据

如何利用ajax实现遍历后台查出的list数据,第1张

你的list集合 拿到后的数据格式是什么样的?String ? Object? json?

前两种的话会麻烦些,json的话就简单了。String 和Object 可能需要自己去写遍历方法,json 可以直接循环出来

通过JSON方式返回数据,然后在success中遍历数据。 *** 作json

$.ajax({

type: 'post',

url: "maintain_findRoomByBuildingId.shtml",

cache: false,

data: {"buildingId":buildingId},

dataType: 'json',

success: function(data){

jQuery.each(data.roomList, function(i,item){

alert(item.id+","+item.name)

})

},

error: function(){

return

}

})


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6780166.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-28
下一篇 2023-03-28

发表评论

登录后才能评论

评论列表(0条)

保存