• springboot 服务端获取前端传过来的参数7种方式


    下面为7种服务端获取前端传过来的参数的方法 

    1、直接把表单的参数写在Controller相应的方法的形参中,适用于GET 和 POST请求方式

          这种方式不会校验请求里是否带参数,即下面的username和password不带也会响应成功

    @RestController
    @RequestMapping("/tools")
    public class InnerController {
    @RequestMapping(
    "/addUser1") public String addUser1(String username,String password) { System.out.println("username is:"+username); System.out.println("password is:"+password); return "success"; } }

    测试代码

    POST请求方式
    <script> var xhr = new XMLHttpRequest() xhr.open('POST', 'http://localhost:8080/tools/addUser1') // 设置请求行 xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded') xhr.send('username=zhangsan&password=123') // 以 urlencoded 格式设置请求体 xhr.onload=function(){ if(xhr.readyState!==4) return console.log(xhr.responseText) } </script>

    GET请求方式: 
    <script> var xhr = new XMLHttpRequest() xhr.open('GET', 'http://localhost:8080/tools/addUser1?username=zhangsan&password=123') // 设置请求行 xhr.send() xhr.onload=function(){ if(xhr.readyState!==4) return console.log(xhr.responseText) } </script>

    2、通过HttpServletRequest接收,适用于GET 和 POST请求方式

          通过HttpServletRequest对象获取请求参数

    @RestController
    @RequestMapping("/tools")
    public class InnerController {
    @RequestMapping(
    "/addUser2") public String addUser2(HttpServletRequest request) { String username=request.getParameter("username"); String password=request.getParameter("password"); System.out.println("username is:"+username); System.out.println("password is:"+password); return "success"; } }

    测试代码同上

    3、通过一个bean来接收,适用于GET 和 POST请求方式
    (1)建立一个和表单中参数对应的bean

    @Data
    @Builder
    @AllArgsConstructor
    @NoArgsConstructor
    public class DemoUser {
        private String username;
        private String password;
    }

    (2)用这个bean来封装接收的参数

    @RestController
    @RequestMapping("/tools")
    public class InnerController {
    @RequestMapping(
    "/addUser3") public String addUser3(DemoUser user) { System.out.println("username is:"+user.getUsername()); System.out.println("password is:"+user.getPassword()); return "success"; } }

    测试代码同上

    4、通过@PathVariable获取路径中的参数,适用于GET请求

       通过注解获取url参数

    @RestController
    @RequestMapping("/tools")
    public class InnerController {
    @RequestMapping(value
    ="/addUser4/{username}/{password}",method=RequestMethod.GET) public String addUser4(@PathVariable String username,@PathVariable String password) { System.out.println("username is:"+username); System.out.println("password is:"+password); return "success";
    } }

    测试代码

      <script>
        var xhr = new XMLHttpRequest()
        xhr.open('GET', 'http://localhost:8080/tools/addUser4/username=zhangsan/password=123') // 设置请求行
        xhr.send() 
        xhr.onload=function(){
          if(xhr.readyState!==4) return 
          console.log(xhr.responseText)
        }
      </script>

    自动将URL中模板变量{username}和{password}绑定到通过@PathVariable注解的同名参数上,即入参后username=zhangsan、password=123

    5、使用@ModelAttribute注解获取参数,适用于POST请求

          

    @RestController
    @RequestMapping("/tools")
    public class InnerController {
        @RequestMapping(value="/addUser5",method=RequestMethod.POST)
        public String addUser5(@ModelAttribute("user") DemoUser user) {
            System.out.println("username is:"+user.getUsername());
            System.out.println("password is:"+user.getPassword());
            return "success";
        }
    }

    测试代码

      <script>
        var xhr = new XMLHttpRequest()
        xhr.open('POST', 'http://localhost:8080/tools/addUser5') // 设置请求行
        xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded')
        xhr.send('username=zhangsan&password=123') 
        xhr.onload=function(){
          if(xhr.readyState!==4) return 
          console.log(xhr.responseText)
        }
      </script>

    6、用注解@RequestParam绑定请求参数到方法入参,适用于GET 和 POST请求方式

          添加@RequestParam注解,默认会校验入参,如果请求不带入参则会报错,可以通过设置属性required=false解决,例如: @RequestParam(value="username", required=false) ,这样就不会校验入参,于第一种请求方式一样

    @RestController
    @RequestMapping("/tools")
    public class InnerController {
        @RequestMapping(value="/addUser6",method=RequestMethod.GET)
        public String addUser6(@RequestParam("username") String username,@RequestParam("password") String password) {
            System.out.println("username is:"+username);
            System.out.println("password is:"+password);
            return "success";
        }
    }

    测试代码同上

    7、用注解@RequestBody绑定请求参数到方法入参 , 用于POST请求

         @RequestBody主要用来接收前端传递给后端的json字符串中的数据的(请求体中的数据的)

    @RestController
    @RequestMapping("/tools")
    public class InnerController {
    
        @RequestMapping(value="/addUser7",method=RequestMethod.POST)
        public String addUser7(@RequestBody DemoUser user) {
            System.out.println("username is:"+user.getUsername());
            System.out.println("password is:"+user.getPassword());
            return "success";
        }
    }

    测试代码:    请求头需要指定为json类型

      <script>
        var xhr = new XMLHttpRequest()
        xhr.open('POST', 'http://localhost:8080/tools/addUser7') // 设置请求行
        xhr.setRequestHeader('Content-Type','application/json')
        xhr.send('{"username":"zhangsan","password":"123"}') 
        xhr.onload=function(){
          if(xhr.readyState!==4) return 
          console.log(xhr.responseText)
        }
      </script>
    DemoUser这个类为一个实体类,里面定义的属性与URL传过来的属性名一一对应。
  • 相关阅读:
    算法:javascript截取字符串
    【转】解决memcached启动失败
    Ubuntu 16.04 安装 Apache, MySQL, PHP7
    phpstorm2016.3+xdebug调试
    (转)微信开发连接SAE数据库
    php图片上传服务器
    大数据整体市场规模达1000亿,金融、政务等行业应用占据七成份额
    “AI智客计划”
    人工智能 :眼纹识别技术大显神通,一眼认出你
    AI 芯片,是金山还是泡沫?
  • 原文地址:https://www.cnblogs.com/unknows/p/11276345.html
Copyright © 2020-2023  润新知