前端js解析后端返回集合数据

1、返回map集合数据

后台数据:

public Object selectAllInfo() {
  
   HashMap map = new HashMap();

   return map;
}

前端:

$.ajax({
   type : 'POST',
   url : 'conte/selectAllInfo.do',
   data : {
     
   },
   dataType : 'json',
   success : function(data) {
      
   },
   error : function(data) {
     console.log(data.(key值))
   }
});

2、返回list>集合数据

后台:

public Object getAll(){
   List> maps=new ArrayList<>();
   return maps;
}

前端:

$.ajax({

type : 'POST',

url : 'conte/selectAllInfo.do',

data : { },

dataType : 'json',

success : function(data) {

$.each(data,function (i,item) {

console.log(i+":::"+item);

if (i=="error"){

toastr.warning(item);

}

else { if (i=="Map里面的key值"){

}

},

error : function(data) {

console.log(data.(key值))

} });

你可能感兴趣的:(java,js)