在使用springmvc的时候我们可以使用spring封装的一系列表单标签,这些标签都可以访问到modelmap中的内容。下面将对这些标签一一介绍。
在正式介绍springmvc的表单标签之前,我们需要先在jsp中声明使用的标签,具体做法是在jsp文件的顶部加入以下指令:
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form" %>
1.1、form标签
使用spring的form标签主要有两个作用,第一是它会自动的绑定来自model中的一个属性值到当前form对应的实体对象,默认是command属性,这样我们就可以在form表单体里面方便的使用该对象的属性了;第二是它支持我们在提交表单的时候使用除get和post之外的其他方法进行提交,包括delete和put等。
1.1.1 支持绑定表单对象
我们先来看如下使用form标签的一个示例:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<form:form action= "formtag/form.do" method= "post" > <table> <tr> <td>name:</td><td><form:input path= "name" /></td> </tr> <tr> <td>age:</td><td><form:input path= "age" /></td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
这个时候如果model中存在一个属性名称为command的javabean,而且该javabean拥有属性name和age的时候,在渲染上面的代码时就会取command的对应属性值赋给对应标签的值。如在上面的代码中,假设model中存在一个属性名称为command的javabean,且它的name和age属性分别为“zhangsan”和“36”时,那么它在渲染时就会生成如下一段代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<form id= "command" action= "formtag/form.do" method= "post" > <table> <tr> <td>name:</td><td><input id= "name" name= "name" type= "text" value= "zhangsan" /></td> </tr> <tr> <td>age:</td><td><input id= "age" name= "age" type= "text" value= "36" /></td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form> |
从上面生成的代码中,我们可以看出,当没有指定form标签的id时它会自动获取该form标签绑定的model中对应属性名称作为id,而对于input标签在没有指定id的情况下它会自动获取path指定的属性作为id和name。
我们指定form默认自动绑定的是model的command属性值,那么当我的form对象对应的属性名称不是command的时候,应该怎么办呢?对于这种情况,spring给我们提供了一个commandname属性,我们可以通过该属性来指定我们将使用model中的哪个属性作为form需要绑定的command对象。除了commandname属性外,指定modelattribute属性也可以达到相同的效果。这里假设上面代码中我们存放在model中的是user对象而不是默认的command对象,那么我们的代码就可以如下定义了:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<form:form action= "formtag/form.do" method= "post" commandname= "user" > <table> <tr> <td>name:</td><td><form:input path= "name" /></td> </tr> <tr> <td>age:</td><td><form:input path= "age" /></td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
1.1.2 支持全部的http请求方法
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<form:form action= "formtag/form.do" method= "delete" modelattribute= "user" > <table> <tr> <td>name:</td><td><form:input path= "name" /></td> </tr> <tr> <td>age:</td><td><form:input path= "age" /></td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
在上面代码中我们设定了该form的提交方法是delete,这样在后台我们就可以给对应的请求方法的requestmapping加上method为requestmethod.delete的限制。我们来看一下上面的代码在进行渲染的时候会生成怎样的html代码,其生成的代码如下所示:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<form id= "user" action= "formtag/form.do" method= "post" > <input type= "hidden" name= "_method" value= "delete" /> <table> <tr> <td>name:</td><td><input id= "name" name= "name" type= "text" value= "zhangsan" /></td> </tr> <tr> <td>age:</td><td><input id= "age" name= "age" type= "text" value= "36" /></td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form> |
从它生成的代码我们可以看出,spring在实现除get和post之外的请求方法时,还是使用的post方法进行请求,然后给表单加上了一个隐藏域,用以表示真正的请求方法,这个隐藏域的名称默认是“_method”。上面这样定义之后是不是就意味着我们可以以delete方式访问到“formtag/form.do”了呢?答案是不行的。这样定义我们只是多加了一个用以表示请求方法的隐藏域而已,实际的请求方式还是post。spring为我们提供了一个filter——hiddenhttpmethodfilter,通过这个filter我们可以把以post方式传递过来的表示实际请求方式的参数转换为对应的真正的http请求方法。所以这个时候我们还需要在web.xml中加上如下代码:
1
2
3
4
5
6
7
8
|
<filter> <filter-name>hiddenhttpmethodfilter</filter-name> <filter- class >org.springframework.web.filter.hiddenhttpmethodfilter</filter- class > </filter> <filter-mapping> <filter-name>hiddenhttpmethodfilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> |
注意:hiddenhttpmethodfilter只能对以post方式进行传递的表示请求方式的隐藏域转换为真正的http请求方式。当我们直接在form:form标签的method中使用除get和post方法以外的其他方法时,spring会自动生成以post方式进行传递的表单以及对应的隐藏域。所以当我们需要手动的设置表示请求方法的隐藏域时,我们就需要指定表单的请求方式为post,为get将不会生效。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<form:form action= "formtag/form.do" method= "post" modelattribute= "user" > <input type= "hidden" name= "_method" value= "head" /> <table> <tr> <td>name:</td><td><form:input path= "name" /></td> </tr> <tr> <td>age:</td><td><form:input path= "age" /></td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
上面代码就是一个手动定义请求方式的隐藏域的示例。这里表示请求方式的隐藏域的名称默认是“_method”,如果不想使用这个默认值的话,我们也可以通过form:form标签的methodparam属性来指定。如下面这个示例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<form:form action= "formtag/form.do" method= "post" methodparam= "requestmethod" modelattribute= "user" > <input type= "hidden" name= "requestmethod" value= "head" /> <table> <tr> <td>name:</td><td><form:input path= "name" /></td> </tr> <tr> <td>age:</td><td><form:input path= "age" /></td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
同时我们也要告诉hiddenhttpmethodfilter我们是使用哪个表单参数作为methodparam,所以我们需要在配置hiddenhttpmethodfilter的时候指明methodparam对应的值。
1
2
3
4
5
6
7
8
9
10
11
12
|
<filter> <filter-name>hiddenhttpmethodfilter</filter-name> <filter- class >org.springframework.web.filter.hiddenhttpmethodfilter</filter- class > <init-param> <param-name>methodparam</param-name> <param-value>requestmethod</param-value> </init-param> </filter> <filter-mapping> <filter-name>hiddenhttpmethodfilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> |
另外需要注意的是在有multipart请求处理的时候hiddenhttpmethodfilter需要在multipart处理之后执行,因为在处理multipart时需要从post请求体中获取参数。所以我们通常会在hiddenhttpmethodfilter之前设立一个multipartfilter。multipartfilter默认会去寻找一个名称为filtermultipartresolver的multipartresolver bean对象来对当前的请求进行封装。所以当你定义的multipartresolver的名称不为filtermultipartresolver的时候就需要在定义multipartfilter的时候通过参数multipartresolverbeanname来指定。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<filter> <filter-name>multipartfilter</filter-name> <filter- class >org.springframework.web.multipart.support.multipartfilter</filter- class > <init-param> <param-name>multipartresolverbeanname</param-name> <param-value>multipartresolver</param-value> </init-param> </filter> <filter-mapping> <filter-name>multipartfilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <filter> <filter-name>hiddenhttpmethodfilter</filter-name> <filter- class >org.springframework.web.filter.hiddenhttpmethodfilter</filter- class > <init-param> <param-name>methodparam</param-name> <param-value>requestmethod</param-value> </init-param> </filter> <filter-mapping> <filter-name>hiddenhttpmethodfilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> |
1.2 、input标签
springmvc的input标签会被渲染为一个type为text的普通html input标签。使用springmvc的input标签的唯一作用就是它能绑定表单数据。springmvc表单标签最大的好处就是它支持数据绑定,当我们的表单标签不需要绑定的数据的时候,我们应该使用普通的html标签。关于input标签绑定表单数据的方法已经在介绍form标签的时候顺带介绍过了,这里就不再过多的赘述了。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<form:form action= "formtag/form.do" method= "head" modelattribute= "user" methodparam= "requestmethod" > <table> <tr> <td>name:</td><td><form:input path= "name" /></td> </tr> <tr> <td>age:</td><td><form:input path= "age" /></td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
1.3 、hidden标签
hidden标签会被渲染为一个type为hidden的普通html input标签。用法跟input标签一样,也能绑定表单数据,只是它生成的是一个隐藏域。
1.4 、checkbox标签
checkbox标签会被渲染为一个type为checkbox的普通html input标签。checkbox标签也是支持绑定数据的。我们知道checkbox就是一个复选框,有选中和不选中两种状态,那么我们在使用checkbox标签的时候是如何来设定它的状态的呢?checkbox标签的选中与否状态是根据它绑定的值来判断的。
1.4.1 绑定boolean数据
当checkbox绑定的是一个boolean数据的时候,那么checkbox的状态跟该boolean数据的状态是一样的,即true对应选中,false对应不选中。
1
2
3
4
5
6
7
8
9
10
|
<form:form action= "formtag/form.do" method= "post" commandname= "user" > <table> <tr> <td>male:</td><td><form:checkbox path= "male" /></td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
看上面这段代码,这个时候假设我们在渲染该视图之前往modelmap中添加了一个user属性,并且该user对象有一个类型为boolean的属性male,那么这个时候如果male属性为true则male那一栏的复选框将会被选中。
1.4.2 绑定列表数据
这里的列表数据包括数组、list和set。下面将以list为例讲一下checkbox是如何根据绑定的列表数据来设定选中状态的。现在假设有一个类user,其有一个类型为list的属性roles,如下所示:
1
2
3
4
5
6
7
8
9
10
11
12
|
public class user { private list<string> roles; public list<string> getroles() { return roles; } public void setroles(list<string> roles) { this .roles = roles; } } |
那么当我们需要展现该user是否拥有某一个role的时候,我们可以使用checkbox标签来绑定roles数据进行展现。当checkbox标签的value在我们绑定的列表数据中存在的时候该checkbox将为选中状态。来看下面一段代码:
1
2
3
4
5
6
7
8
9
10
11
12
|
<form:form action= "formtag/form.do" method= "post" commandname= "user" > <table> <tr> <td>roles:</td> <td> <form:checkbox path= "roles" value= "role1" />role1<br/> <form:checkbox path= "roles" value= "role2" />role2<br/> <form:checkbox path= "roles" value= "role3" />role3 </td> </tr> </table> </form:form> |
就上面代码而言就是当user拥有role1的时候对应的<form:checkbox path="roles" value="role1"/>就会为选中状态,也就是说roles列表中包含role1的时候该checkbox就会为选中状态。
1.4.3 绑定一个object数据
checkbox还支持绑定数据类型为object的数据,这种情况下spring会拿所绑定对象数据的tostring结果跟当前checkbox的value进行比较,如果能够进行匹配则该checkbox将为选中状态。看这样一个例子,有一个user类代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
|
public class user { private blog blog; public blog getblog() { return blog; } public void setblog(blog blog) { this .blog = blog; } } |
blog类的代码如下:
1
2
3
4
5
6
7
|
public class blog { public string tostring() { return "helloworld" ; } } |
我们可以看到blog类的tostring方法已经被写死为“helloworld”了。这个时候假设我们往modelmap中放了一个user对象,而且给该user对象设定了一个blog属性,那么当我们使用该modelmap对象渲染如下视图代码时,checkbox标签的选中状态是怎样的呢?
根据前面描述的当checkbox标签绑定的是一个object对象的时候我们会拿该object对象的tostring和checkbox的value值进行比较,如果匹配则当前checkbox为选中状态,我们知道这里的checkbox将为选中状态。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<form:form action= "formtag/form.do" method= "post" commandname= "user" > <table> <tr> <td>helloworld:</td> <td> <form:checkbox path= "blog" value= "helloworld" /> </td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
1.5、checkboxes标签
相对于一个checkbox标签只能生成一个对应的复选框而言,一个checkboxes标签将根据其绑定的数据生成n个复选框。checkboxes绑定的数据可以是数组、集合和map。在使用checkboxes时我们有两个属性是必须指定的,一个是path,另一个是items。items表示当前要用来展现的项有哪些,而path所绑定的表单对象的属性表示当前表单对象拥有的项,即在items所展现的所有项中表单对象拥有的项会被设定为选中状态。先来看以下一段代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<form:form action= "formtag/form.do" method= "post" commandname= "user" > <table> <tr> <td>roles:</td> <td> <form:checkboxes path= "roles" items= "${rolelist}" /> </td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
上面的jsp视图对应着如下的处理器方法:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@requestmapping (value= "form" , method=requestmethod.get) public string formtag(map<string, object> map) { user user = new user(); list<string> roles = new arraylist<string>(); roles.add( "role1" ); roles.add( "role3" ); user.setroles(roles); list<string> rolelist = new arraylist<string>(); rolelist.add( "role1" ); rolelist.add( "role2" ); rolelist.add( "role3" ); map.put( "user" , user); map.put( "rolelist" , rolelist); return "formtag/form" ; } |
从以上代码中我们可以看到我们放在modelmap中的rolelist对象有三个元素,分别是role1、role2和role3,而我们的表单对象user的roles属性只拥有两个元素,分别是role1和role3,,所以当我们访问该处理器方法返回如上所示的视图页面时,我们要展现的复选框项是rolelist,也就是role1、role2和role3,而我们表单对象只拥有role1和role3,所以在页面进行渲染的时候会展示3个复选框项,但只有role1和role3会被设定为选中状态。
上面介绍的这种情况是使用list作为展现复选框项的数据源,这种情况我们已经看到了它所呈现出来的标签label和它的值是一样的。使用array和set作为数据源也是这种情况。那么如果要让checkboxes呈现出来的label和实际上送的value不同的话应该怎么做呢?这个时候我们就可以使用map作为数据源了。使用map作为checkboxes的items属性的数据源时key将作为真正的复选框的value,而map的value将作为label进行展示。当使用map作为checkboxes的items属性的数据源时我们绑定的表单对象属性的类型可以是array、集合和map,这种情况就是判断items map中是否含有对应的key来决定当前的复选框是否处于选中状态。我们来看以下一个处理器方法以及其对应的视图代码。
处理器方法:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@requestmapping (value= "form" , method=requestmethod.get) public string formtag(map<string, object> map) { user user = new user(); list<string> roles = new arraylist<string>(); roles.add( "role1" ); roles.add( "role3" ); user.setroles(roles); map<string, string> rolemap = new hashmap<string, string>(); rolemap.put( "role1" , "角色1" ); rolemap.put( "role2" , "角色2" ); rolemap.put( "role3" , "角色3" ); map.put( "user" , user); map.put( "rolemap" , rolemap); return "formtag/form" ; } |
对应的视图代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<form:form action= "formtag/form.do" method= "post" commandname= "user" > <table> <tr> <td>roles:</td> <td> <form:checkboxes path= "roles" items= "${rolemap}" /> </td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
这个时候我们知道会呈现出3个复选框,而checkboxes绑定的表单对象user的roles属性是一个集合对象,其包含的两个元素都能在checkboxes的items数据源中找到对应的key,所以以这两个元素为value的checkbox将处于选中状态。效果如下:
当我们使用array或者集合作为数据源,且里面的元素都是一个一个pojo时,我们还可以使用checkboxes标签的itemlabel和itemvalue属性来表示使用数组或者集合中元素对象的哪一个属性作为需要呈现的单选框的label和value。
1.6、radiobutton标签
radiobutton标签会被渲染为一个type为radio的普通html input标签。radiobutton标签也是可以绑定数据的。以下是一个radiobutton的简单应用示例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<form:form action= "formtag/form.do" method= "post" commandname= "user" > <table> <tr> <td>性别:</td> <td> <form:radiobutton path= "sex" value= "1" />男 <form:radiobutton path= "sex" value= "0" />女 </td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
在上面代码中我们的radiobutton标签都是绑定了表单对象user的sex属性,当sex为1的时候就代表性别为男,上面性别为男的那一行就会被选中,当sex为0的时候就代表性别为女,上面性别为女的那一行就会被选中。
1.7、radiobuttons标签
radiobuttons标签跟radiobutton标签的区别如同checkbox标签对checkboxes标签的区别。使用radiobuttons标签的时候将生成多个单选按钮。使用radiobuttons有两个属性也是我们必须指定的,一个是path属性,表示绑定的表单对象对应的属性,另一个是items属性,表示用于生成单选按钮的数据源。跟checkboxes一样,radiobuttons的items属性和path属性都可以是array、集合或者是map。现在我们假设user在篮球、足球、乒乓球、羽毛球和排球这5种运动中选择一种作为自己最喜欢的球类运动。处理器方法和返回的对应的视图代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
@requestmapping (value= "form" , method=requestmethod.get) public string formtag(map<string, object> map) { user user = new user(); user.setfavoriteball( 4 ); //设置我最喜爱的球类运动是4羽毛球 map<integer, string> ballmap = new hashmap<integer, string>(); ballmap.put( 1 , "篮球" ); ballmap.put( 2 , "足球" ); ballmap.put( 3 , "乒乓球" ); ballmap.put( 4 , "羽毛球" ); ballmap.put( 5 , "排球" ); map.put( "user" , user); map.put( "ballmap" , ballmap); return "formtag/form" ; } |
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<form:form action= "formtag/form.do" method= "post" commandname= "user" > <table> <tr> <td>最喜欢的球类:</td> <td> <form:radiobuttons path= "favoriteball" items= "${ballmap}" delimiter= " " /> </td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
在上述代码中我们可以看到我们使用了radiobuttons的delimiter属性,该属性表示进行展示的radiobutton之间的分隔符。这里用的是一个空格。结果页面如下所示:
1.8、password标签
password标签将会被渲染为一个type为password的普通html input标签。
1.9、select标签
select标签将会被渲染为一个普通的html select标签。这里还拿前面的user最喜欢的球类运动来做示例,有如下这样一个处理器方法和对应的视图页面:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
@requestmapping (value= "form" , method=requestmethod.get) public string formtag(map<string, object> map) { user user = new user(); user.setfavoriteball( 4 ); //设置我最喜爱的球类运动是4羽毛球 map<integer, string> ballmap = new hashmap<integer, string>(); ballmap.put( 1 , "篮球" ); ballmap.put( 2 , "足球" ); ballmap.put( 3 , "乒乓球" ); ballmap.put( 4 , "羽毛球" ); ballmap.put( 5 , "排球" ); map.put( "user" , user); map.put( "ballmap" , ballmap); return "formtag/form" ; } |
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<form:form action= "formtag/form.do" method= "post" commandname= "user" > <table> <tr> <td>最喜欢的运动:</td> <td> <form:select path= "favoriteball" items= "${ballmap}" /> </td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
这个时候会渲染出如下结果:
从上面示例我们可以看出,我们通过items属性给select标签指定了一个数据源,并且绑定了表单对象user的favoriteball属性。items属性是用于指定当前select的所有可选项的,但是它对于select标签而言不是必须的,因为我们还可以手动的在select标签中间加上option标签来指定select可选的option。select标签支持的items属性的数据类型可以是array、collection和map,当数据类型为array或collection时且其中的元素为一个pojo时,我们可以通过属性itemlabel和itemvalue来指定将用于呈现的option label和value,其他情况下array和collection数据源中的元素将既作为可选项option的value又作为它的label。当items的数据类型为map时,map的key将作为可选项option的value,而map的value将作为option的label标签。
1.10、 option标签
option标签会被渲染为一个普通的html option标签。当一个springmvc select标签没有通过items属性指定自己的数据源的时候,我们就可以在select标签中通过普通html option标签或者springmvc option标签来指定可以选择的项。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<form:form action= "formtag/form.do" method= "post" commandname= "user" > <table> <tr> <td>最喜欢的运动:</td> <td> <form:select path= "favoriteball" > <option>请选择</option> <form:option value= "1" >篮球</form:option> <option value= "4" >羽毛球</option> </form:select> </td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
我们可以看到在上面代码中我们是没有指定select标签的数据源的,而是通过在select标签体里面指定普通html option标签和springmvc option标签来指定可选项。其渲染的效果如下:
这个时候你可能会有两个疑问:
l 如果我在使用select标签的时候通过items属性指定了其数据源,同时又在其标签体里面使用了option标签,那么这个时候会渲染出什么样的效果呢?是两种形式有一个优先级呢,还是会两种共存呢?
l 从上面代码产生的效果来看springmvc option标签跟普通的html option标签的效果无异,那为什么还要引进一个springmvc option标签呢?
先来解释第一个问题,我们把上面的视图代码改为如下形式:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<form:form action= "formtag/form.do" method= "post" commandname= "user" > <table> <tr> <td>最喜欢的运动:</td> <td> <form:select path= "favoriteball" items= "${ballmap}" > <option>请选择</option> <form:option value= "1" >篮球</form:option> <option value= "4" >羽毛球</option> </form:select> </td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
从上述代码中我们可以看出来我们就是给select标签加了一个items属性,然后指定其数据源为当前pagecontext的ballmap属性。此时,将渲染出如下效果:
答案很明显,当select标签指定了items属性的时候,它会忽略其标签体的内容,而使用items指定的内容来渲染出可选项。
对于第二个问题,我们把视图代码改为如下形式:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<form:form action= "formtag/form.do" method= "post" commandname= "user" > <table> <tr> <td>最喜欢的运动:</td> <td> <form:select path= "favoriteball" > <option>请选择</option> <form:option value= "1" >篮球</form:option> <option value= "4" >羽毛球-a</option> <form:option value= "4" >羽毛球-b</form:option> </form:select> </td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
我们可以看到,在上面代码中,我们定义了一个select标签,其绑定了当前表单对象user的favoriteball属性,而且我们没有给该select指定items数据源。值得注意的是在该select标签体中我们通过普通html option和springmvc option标签定义了两个value均为4的option元素,而且我们也知道当前表单对象user的favoriteball属性的值是4。接着我们来看一下上面代码渲染出的效果:
接着我们把上述代码中以springmvc option标签定义的option给删除,再看一下其渲染出的效果如下:
由此我们可以看出springmvc option标签和普通html option标签的区别就在于普通html option标签不具备数据绑定功能,而springmvc option标签具有数据绑定功能,它能把当前绑定的表单对象的属性对应的值对应的option置为选中状态。
1.11、options标签
使用options标签的时候需要我们指定其items属性,它会根据其items属性生成一系列的普通html option标签。这里的items属性的可取数据类型及其对应的渲染规则跟select的items属性是一样的。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<form:form action= "formtag/form.do" method= "post" commandname= "user" > <table> <tr> <td>最喜欢的运动:</td> <td> <form:select path= "favoriteball" > <option>请选择</option> <form:options items= "${ballmap}" /> </form:select> </td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
上面代码将渲染出如下效果:
1.12、textarea标签
springmvc textarea标签将被渲染为普通html textarea标签。简单示例如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<form:form action= "formtag/form.do" method= "post" commandname= "user" > <table> <tr> <td>自我介绍:</td> <td> <form:textarea path= "introduction" cols= "20" rows= "10" /> </td> </tr> <tr> <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
1.13、errors标签
springmvc errors标签是对应于springmvc的errors对象的。它的作用就是用于展现errors对象中包含的错误信息的。我们利用errors标签来展现errors的时候是通过errors标签的path属性来绑定一个错误信息的。我们可以通过path属性来展现两种类型的错误信息。
l 所有的错误信息,这个时候path的值应该置为“*”
l 当前对象的某一个域的错误信息,这个时候path的值应为所需展现的域的名称
看下面这样一个例子:
定义了一个uservalidator对象,专门用来对user对象进行验证,其代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import org.springframework.validation.errors; import org.springframework.validation.validationutils; import org.springframework.validation.validator; public class uservalidator implements validator { @override public boolean supports( class <?> clazz) { // todo auto-generated method stub return user. class .equals(clazz); } @override public void validate(object target, errors errors) { // todo auto-generated method stub validationutils.rejectifempty(errors, "name" , null , "name is empty" ); validationutils.rejectifempty(errors, "username" , null , "username is empty." ); } } |
然后我们有这样一个控制器类:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
@controller @requestmapping ( "formtag" ) public class formtagcontroller { @requestmapping (value= "form" , method=requestmethod.get) public string formtag(map<string, object> map) { user user = new user(); map.put( "user" , user); return "formtag/form" ; } @initbinder public void initbinder(databinder binder) { binder.setvalidator( new uservalidator()); } @requestmapping (value= "form" , method=requestmethod.post) public string form( @valid user user, errors errors) { if (errors.hasfielderrors()) return "formtag/form" ; return "formtag/submit" ; } } |
我们可以看到我们在上述控制器类中通过databinder对象给该类设定了一个用于验证的uservalidator,这样当我们请求该控制器的时候uservalidator将生效。
我们有如下这样一段表单代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<form:form action= "formtag/form.do" method= "post" commandname= "user" > <table border= "1px" bordercolor= "blue" > <tr align= "center" > <td width= "100" >姓名:</td> <td width= "150" ><form:input path= "name" /></td> </tr> <tr align= "center" > <td>用户名:</td> <td><form:input path= "username" /></td> </tr> <tr> <td>所有错误信息:</td> <td><form:errors path= "*" /></td> </tr> <tr> <td>name的错误信息:</td> <td><form:errors path= "name" /></td> </tr> <tr align= "center" > <td colspan= "2" ><input type= "submit" value= "提交" /></td> </tr> </table> </form:form> |
当我们提交上面的表单的时候会往errors中注入两个错误信息,展示的页面信息将如下所示:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。