zoukankan      html  css  js  c++  java
  • SpringMVC(2)之表单(非表单)参数绑定

    表单参数绑定

    基本数据类型包装类Integer,其它类似

    用包装类型原因:Controller方法参数中定义的是基本数据类型,但是从页面提交过来的数据为null或者””的话,会出现数据转换的异常

    Controller:

    @RequestMapping("/veiw")
    public void test(Integer age) {
    }

    Form表单:

    <form action="/veiw" method="post">
    <input name="age" value="5" type="text"/>
    ...
    </form>

    Controller中和form表单参数变量名保持一致,就能完成数据绑定,如果不一致可以使用@RequestParam注解

    自定义对象模型

    Model class:

    public class Chapter {
        // 章节id
        private Integer id;
        // courseId
        private Integer courseId;
    
        public Integer getId() {
            return id;
        }
    
        public void setId(Integer id) {
            this.id = id;
        }
    
        public Integer getCourseId() {
            return courseId;
        }
    
        public void setCourseId(Integer courseId) {
            this.courseId = courseId;
        }
    }

    Controller:

    @RequestMapping("/veiw")
    public void test(Chapter chapter) {
    }

    form表单:

    <form action="/veiw" method="post">
    <input name="id" value="5" type="text"/>
    <input name="courseId" value="5" type="text"/>
    ...
    </form>

    只要model中对象名与form表单的name一致即可

    自定义复合对象模型

    Model class:

     public Class Course{
        // 课程Id
        private Integer courseId;
        // 课程名称
        private String title;
        // 课程章节
        private List<Chapter> chapterList;
    
        public Integer getCourseId() {
            return courseId;
        }
    
        public void setCourseId(Integer courseId) {
            this.courseId = courseId;
        }
    
        public String getTitle() {
            return title;
        }
    
        public void setTitle(String title) {
            this.title = title;
        }
        public List<Chapter> getChapterList() {
            return chapterList;
        }
    
        public void setChapterList(List<Chapter> chapterList) {
            this.chapterList = chapterList;
        }
    }
    

    Controller:

    @RequestMapping("/veiw")
    public void test(Course age) {
    }

    form表单:

    <form action="/veiw" method="post">
    <input name="chapter.id" value="5" type="text"/>
    <input name="chapter.courseId" value="5" type="text"/>
    ...
    </form>

    使用“属性名(对象类型的属性).属性名”来命名input的name

    List、Set、Map绑定

    与上面的自定义复合属性差别在于input中name的命名

    • List,Set表单中需要指定List的下标
    
    public Class Course{
       String id;
       List<Chapter> chapter;
       setter..
       getter..
    }

    form(List、Set):

    <form action="/veiw" method="post">
    <input name="chapter[0].id" value="5" type="text"/>
    <input name="chapter[0].courseId" value="5" type="text"/>
    ...
    </form>
    • Map
    <form action="/veiw" method="post">
    <input name="chapter["id"] value="5" type="text"/>
    <input name="chapter["courseId"] value="5" type="text"/>
    ...
    </form>

    关于@ModelAttribute几种用法

    1. @ModelAttribute注释void返回值的方法
    2. @ModelAttribute(value=”“)注释返回具体类的方法
    3. .@ModelAttribute注释方法参数
      具体可看这@ModelAttribute很不错

    非表单参数绑定

    @RequestParam:请求参数,用于请求Url?id=xxxxxx路径后面的参数(即id)
    当URL使用 Url?id=xxxxxx, 这时的id可通过 @RequestParam注解绑定它传过来的值到方法的参数上。

    @RequestMapping("/book")  
      public void findBook(@RequestParam String id) {      
        // implementation omitted   
      }
    清风徐来,水波不兴
  • 相关阅读:
    又见Python<4>:Pandas之DataFrame对象的使用
    又见Python<3>:Pandas之Series对象的使用
    使用tdload工具将本地数据导入到Teradata数据库中
    解决ubuntu系统root用户下Chrome无法启动问题
    又见Python<2>:如何安装第三方库(Windows)
    又见Python<1>:使用Anaconda搭建Python开发环境(Windows7)
    数据仓库原理<4>:联机分析处理(OLAP)
    数据仓库原理<3>:数据仓库与ODS
    配置hibernate,Struts。文件
    jQuery +ajax +json+实现分页
  • 原文地址:https://www.cnblogs.com/it-xiaojun/p/6814752.html
Copyright © 2011-2022 走看看