JS传递对象数组为参数给后端,后端获取的实例代

下面小编就为大家带来一篇JS传递对象数组为参数给后端,后端获取的实例代码。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧

前端JS代码:

  var conditons = [];   var test1 = new Object();   test1.name="1";   test1.id="2";   var test2 = new Object();   test2.name="1";   test2.id="2";   conditons.push(test1);   conditons.push(test2);   $(function(){     $.ajax({       async:"false",       type:'post',       url:'链接',       data:{name:"123",conditions:JSON.stringify(conditons)},       dataType : 'json',       success:function(data){         console.log(data);       },       error: function (XMLHttpRequest, textStatus, errorThrown){         alert("error");       }     });   });

重点注意:将对象数组转为JSON形式的字符串:JSON.stringify

后端获取:

String conditions = request.getParameter("conditions"); JSONArray conditionList = JSONArray.fromObject(conditions);

以上就是小编为大家带来的JS传递对象数组为参数给后端,后端获取的实例代码全部内容了,希望大家多多支持脚本之家~

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzsdwj.html