当前位置:主页 > 网页前端 > JavaScript代码 >

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

时间:2021-04-30 10:14:08 | 栏目:JavaScript代码 | 点击:

前端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);

您可能感兴趣的文章:

相关文章