这篇文章主要介绍“基于controller使用map接收参数的注意事项是什么”,在日常操作中,相信很多人在基于controller使用map接收参数的注意事项是什么问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”基于controller使用map接收参数的注意事项是什么”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
controller使用map接收参数注意事项
关于前端使用map去接收参数的问题
@PostMapping("test01")@ResponseBody // 如果这里不加@RequestBody,那么springmvc默认创建的是BindAwareModelMappublic Object test01( Map dataMap) { // 对象,并且都参数都不会封装进去 System.out.println(dataMap); dataMap = null; return new BindingAwareModelMap(); // 如果返回BindingAwareModelMap对象,就会抛出异常}
正确封装姿势
@Controller@RequestMapping("map")public class MapController { @PostMapping("test01") @ResponseBody // 如果加了@RequestBody,那么创建的是LinkedHashMap public Object test01(@RequestBody Map dataMap) { // 并且参数都封装了进去(url路径参数和json参数都会封装进去) System.out.println(dataMap); dataMap.put("msg", "ojbk"); return dataMap; }}
结论:如果使用map接收前端参数,那么一定要加@Requestbody才行
#mybatis使用map封装参数,@Select("select * from t_product where pid = #{pid} or pname = #{pname}")List<Product> getByMap(Map map); #mybatisplus中有写好的方法List<T> selectByMap(@Param("cm") Map<String, Object> columnMap);
正确封装姿势2
@Datapublic class Page { private Map dataMap = new HashMap(); // 这里可以不用初始化,加了@RequestBody,默认创建LinkdedHashMap}@Controller@RequestMapping("map")public class MapController { @PostMapping("test01") @ResponseBody public Object test01(@RequestBody Page page) { // 一定要加@RequestBody,否则封装不进去 return page; }}
前端需要使用json传参格式:
{ "dataMap":{ "name":"zzhua" }}
controller使用map接收参数并用POSTman测试
controller层
@PostMapping("/xksq/getGjclByCondition")public ResultInfo getGjclByCondition(@RequestBody Map<String,Object> params,HttpServletRequest request){ Map<String,Object> map = new HashMap<>(); try { Integer iPageIndex = (Integer) params.get("iPageIndex"); Integer iPageSize = (Integer) params.get("iPageSize"); PageHelper.startPage(iPageIndex!=null?iPageIndex:1,iPageSize!=null?iPageSize:10); String username = JwtUtil.getUsername(request.getHeader("token")); Rfgcgl user = rfgcglMapper.selectOne(new QueryWrapper<Rfgcgl>().eq("YHMC", username)); if(null==user){ return ResultInfo.fail(903,"用户不存在"); } params.put("qynbbh",user.getQyNbBh()); List<Map<String, Object>> gjclByCondition = clxxQysqMapper.getGjclByCondition(params); PageInfo<Map<String, Object>> pageInfo = new PageInfo<>(gjclByCondition); map.put("total",pageInfo.getTotal()); map.put("datas",pageInfo); return ResultInfo.ok(map); }catch (Exception e){ e.printStackTrace(); return ResultInfo.fail(901, "列表条件查询失败"); }}
使用postman测试
到此,关于“基于controller使用map接收参数的注意事项是什么”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!