JS传递对象数组为参数给后端,后端获取

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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传递对象数组为参数给后端,后端获取的主要内容,如果未能解决你的问题,请参考以下文章

DRF中获取前端的参数为QueryDict类型—已解决

前端需要java后端传多个对象数据怎么传?

axios将数据从前端传到后端是对象还是数组

前端向后端传一个json数组对象

需要向后台传递一个对象数据,但对象中包含数组,结果请求报错,500

FormData如何向后端传递数组