前两种的话会麻烦些,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
}
})
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)