• spring mvc@RequestParam根据参数名获取传入参数值


    在SpringMVC后台控制层获取参数的方式主要有两种,一种是request.getParameter("name"),另外一种是用注解@RequestParam直接获取。这里主要讲这个注解 

    一、基本使用,获取提交的参数 
    后端代码: 

    Java代码  收藏代码
    1. @RequestMapping("testRequestParam")    
    2.    public String filesUpload(@RequestParam String inputStr, HttpServletRequest request) {    
    3.     System.out.println(inputStr);  
    4.       
    5.     int inputInt = Integer.valueOf(request.getParameter("inputInt"));  
    6.     System.out.println(inputInt);  
    7.       
    8.     // ......省略  
    9.     return "index";  
    10.    }     



    前端代码: 

    Html代码  收藏代码
    1. <form action="/gadget/testRequestParam" method="post">    
    2.      参数inputStr:<input type="text" name="inputStr">    
    3.      参数intputInt:<input type="text" name="inputInt">    
    4. </form>  



    前端界面: 
     

    执行结果: 
    test1 
    123 

    可以看到spring会自动根据参数名字封装进入,我们可以直接拿这个参数名来用 

  • 相关阅读:
    用面向对象做练习题
    面向对象
    php数组
    PHP函数
    php语句函数
    mySQL函数
    mySQL相关知识
    mySQL建表及练习题(下)
    mySQL建表及练习题(上)
    HTML5 canvas画布标签
  • 原文地址:https://www.cnblogs.com/panxuejun/p/6245752.html
Copyright © 2020-2023  润新知