当前位置:   article > 正文

post请求传递多个类型的参数_post请求传多个参数

post请求传多个参数

需求:前端传递一个对象和一个对象数组给后端,后端进行接收
思路:后端使用map接收这两个参数,分别转换为json字符串和json数组后,再转为对应的对象和对象数组

前端传递多个参数

post传递一个对象和一个对象数组,参数放在data中
在这里插入图片描述
参考文章

https://blog.csdn.net/weixin_43647393/article/details/112218804

后端接收并转换

    @RequestMapping(value = "/listingGoods")
    @ResponseBody
    public String listingGoods(@RequestBody Map<String,Object> datas)  {

//       数据转json字符串
        String object = JSON.toJSONString(datas.get("goods"));
//        json是字符串转实体类
         Goods goods  = JSON.parseObject(object, Goods.class);
//       先将数据转化成json数组
        JSONArray array = JSONArray.parseArray(JSON.toJSONString(datas.get("priceList")));
//        将json数组转化成List
        List<Price> priceList = JSONObject.parseArray(array.toString(), Price.class);

        System.out.println(goods);
        System.out.println(priceList);

 
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

转换结果如下
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/303010
推荐阅读
相关标签
  

闽ICP备14008679号