当前位置:   article > 正文

Spring Boot接收从前端传过来的数据常用方式以及处理的技巧

Spring Boot接收从前端传过来的数据常用方式以及处理的技巧

一、params 传参

参数是会拼接到url后面的请求

场景规范:url后面的key值<=3个参数的时候,使用params 传参

支持的请求方式get(正规的是get方式)、post 都行

例如:
http://localhost:8080/simpleParam?name=Tom&age=10

postman里面的体现为
在这里插入图片描述

后端接收的接口写法如下
普遍都是使用第一种和第二种去接收

   //(1)直接接收,只要key值相同
    @RequestMapping("/simpleParam")
    public String simpleParam(String name,Integer age){
   
        System.out.println("name= "+name);
        System.out.println("age= "+ age);
        return "success";
    }
    //(2)直接接收,值不同可以使用@RequestParam("name");取别名
    @RequestMapping("/simpleParam")
    public String simpleParam(@RequestParam("name")String username ,Integer age){
   
        System.out.println("username = "+username 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/355470
推荐阅读
相关标签
  

闽ICP备14008679号