SpringMVC表单标签知识点详解
本篇我们来学习spring mvc表单标签的使用,借助于spring mvc提供的表单标签可以让我们在视图上展示webmodel中的数据更加轻松。
一.首先我们先做一个简单了例子来对spring mvc表单表单标签的使用有一个大致的印象,然后再结合例子对各个标签介绍一下如何使用。
1.首先,在com.demo.web.models包中添加一个模型tagsmodel内容如下:
package com.demo.web.models; import java.util.list; import java.util.map; public class tagsmodel{ private string username; private string password; private boolean testboolean; private string[] selectarray; private string[] testarray; private integer radiobuttonid; private integer selectid; private list<integer> selectids; private map<integer,string> testmap; private string remark; public void setusername(string username){ this.username=username; } public void setpassword(string password){ this.password=password; } public void settestboolean(boolean testboolean){ this.testboolean=testboolean; } public void setselectarray(string[] selectarray){ this.selectarray=selectarray; } public void settestarray(string[] testarray){ this.testarray=testarray; } public void setradiobuttonid(integer radiobuttonid){ this.radiobuttonid=radiobuttonid; } public void setselectid(integer selectid){ this.selectid=selectid; } public void setselectids(list<integer> selectids){ this.selectids=selectids; } public void settestmap(map<integer,string> testmap){ this.testmap=testmap; } public void setremark(string remark){ this.remark=remark; } public string getusername(){ return this.username; } public string getpassword(){ return this.password; } public boolean gettestboolean(){ return this.testboolean; } public string[] getselectarray(){ return this.selectarray; } public string[] gettestarray(){ return this.testarray; } public integer getradiobuttonid(){ return this.radiobuttonid; } public integer getselectid(){ return this.selectid; } public list<integer> getselectids(){ return this.selectids; } public map<integer,string> gettestmap(){ return this.testmap; } public string getremark(){ return this.remark; } }
2.其次,在包com.demo.web.controllers添加一个tagscontroller内容如下:
package com.demo.web.controllers; import java.util.arrays; import java.util.hashmap; import java.util.map; import org.springframework.stereotype.controller; import org.springframework.ui.model; import org.springframework.web.bind.annotation.requestmapping; import org.springframework.web.bind.annotation.requestmethod; import com.demo.web.models.tagsmodel; @controller @requestmapping(value = "/tags") public class tagscontroller { @requestmapping(value="/test", method = {requestmethod.get}) public string test(model model){ if(!model.containsattribute("contentmodel")){ tagsmodel tagsmodel=new tagsmodel(); tagsmodel.setusername("aaa"); tagsmodel.setpassword("bbb"); tagsmodel.settestboolean(true); tagsmodel.setselectarray(new string[] {"arrayitem 路人甲"}); tagsmodel.settestarray(new string[] {"arrayitem 路人甲","arrayitem 路人乙","arrayitem 路人丙"}); tagsmodel.setradiobuttonid(1); tagsmodel.setselectid(2); tagsmodel.setselectids(arrays.aslist(1,2)); map<integer,string> map=new hashmap<integer,string>(); map.put(1, "mapitem 路人甲"); map.put(2, "mapitem 路人乙"); map.put(3, "mapitem 路人丙"); tagsmodel.settestmap(map); tagsmodel.setremark("备注..."); model.addattribute("contentmodel", tagsmodel); } return "tagstest"; } }
3.最后,在views文件夹下添加视图tagstest.jsp内容如下:
<%@ page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8"%> <!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd"> <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>insert title here</title> </head> <body> <form:form modelattribute="contentmodel" method="post"> input 标签:<form:input path="username"/><br/> password 标签:<form:password path="password"/><br/> 绑定boolean的checkbox 标签:<br/> <form:checkbox path="testboolean"/><br/> 绑定array的checkbox 标签:<br/> <form:checkbox path="testarray" value="arrayitem 路人甲"/>arrayitem 路人甲 <form:checkbox path="testarray" value="arrayitem 路人乙"/>arrayitem 路人乙 <form:checkbox path="testarray" value="arrayitem 路人丙"/>arrayitem 路人丙 <form:checkbox path="testarray" value="arrayitem 路人丁"/>arrayitem 路人丁<br/> 绑定array的checkboxs 标签:<br/> <form:checkboxes path="selectarray" items="${contentmodel.testarray}"/><br/> 绑定map的checkboxs 标签:<br/> <form:checkboxes path="selectids" items="${contentmodel.testmap}"/><br/> 绑定integer的radiobutton 标签:<br/> <form:radiobutton path="radiobuttonid" value="0"/>0 <form:radiobutton path="radiobuttonid" value="1"/>1 <form:radiobutton path="radiobuttonid" value="2"/>2<br/> 绑定map的radiobuttons 标签:<br/> <form:radiobuttons path="selectid" items="${contentmodel.testmap}"/><br/> 绑定map的select 标签:<br/> <form:select path="selectid" items="${contentmodel.testmap}"/><br/> 不绑定items数据直接在form:option添加的select 标签:<br/> <form:select path="selectid"> <option>请选择人员</option> <form:option value="1">路人甲</form:option> <form:option value="2">路人乙</form:option> <form:option value="3">路人丙</form:option> </form:select><br/> 不绑定items数据直接在html的option添加的select 标签:<br/> <form:select path="selectid"> <option>请选择人员</option> <option value="1">路人甲</option> <option value="2">路人乙</option> <option value="3">路人丙</option> </form:select><br/> 用form:option绑定items的select 标签:<br/> <form:select path="selectid"> <option/>请选择人员 <form:options items="${contentmodel.testmap}"/> </form:select><br/> textarea 标签: <form:textarea path="remark"/><br/> <input type="submit" value="submit" /> </form:form> </body> </html>
4.运行测试:
二.下面我们来介绍各个标签的使用方法。
1.要使用spring mvc提供的表单标签,首先需要在视图页面添加:
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
2.form标签:
<form:form modelattribute="contentmodel" method="post">
modelattribute属性指定该form绑定的是哪个model,当指定了对应的model后就可以在form标签内部其它表单标签上通过为path指定model属性的名称来绑定model中的数据了,method属性指定form的提交方式如get、post等。
3.input标签:
<form:input path="username"/>
会生成一个type为text的html input标签,通过path属性来指定要绑定的model中的值。
4.password标签:
<form:password path="password"/>
会生成一个type为password的html input标签,通过path属性来指定要绑定的model中的值。
5.checkbox标签:
会生成一个type为checkbox的html input标签,支持绑定boolean、数组、list或set类型的数据。
绑定boolean数据会生成一个复选框,当boolean为true该复选框为选定状态,false为不选定状态。
<form:checkbox path="testboolean"/>
绑定数组、list或set类型的数据(以数组作为演示)如果绑定的数据中有对应checkbox指定的value时则为选定状态,反之为不选定状态:
绑定array的checkbox 标签:<br/>
<form:checkbox path="testarray" value="arrayitem 路人甲"/>arrayitem 路人甲 <form:checkbox path="testarray" value="arrayitem 路人乙"/>arrayitem 路人乙 <form:checkbox path="testarray" value="arrayitem 路人丙"/>arrayitem 路人丙 <form:checkbox path="testarray" value="arrayitem 路人丁"/>arrayitem 路人丁
6.checkboxs标签:
会根据绑定的items数据生成一组对应的type为checkbox的html input标签,绑定的数据可以是数组、集合或map,其中checkboxs的path属性也必指定,当path中的数据有和items中的数据值同的时候对应的checkbox为选定状态,反之为不选定状态。
绑定集合数据(以数组作为演示):
绑定array的checkboxs 标签:<br/> <form:checkboxes path="selectarray" items="${contentmodel.testarray}"/>
这里需要注意的是当使用el表达式绑定时需要连model的名称一起指定如${contentmodel.testarray}而不能像path一样只指定model对应的属性名称。
但通常情况下我们需要的是checkbox显示的是名称,但选择后提交的是对应名称的值,比如id,我们就可以通过绑定map来实现这个功能:
绑定map的checkboxs 标签:<br/> <form:checkboxes path="selectids" items="${contentmodel.testmap}"/>
生成的一组checkbox中其中一个checkbox的html代码:
7.radiobutton标签:
会生成一个type为radio的html input标签,如果绑定的数据的值对应radiobutton指定的value时则为选定状态,反之为不选定状态:
绑定integer的radiobutton 标签:<br/> <form:radiobutton path="radiobuttonid" value="0"/>0 <form:radiobutton path="radiobuttonid" value="1"/>1 <form:radiobutton path="radiobuttonid" value="2"/>2
8.radiobuttons标签:
会根据绑定的items数据生成一组对应的type为radio的html input标签,绑定的items数据可以是数组、集合或map,其中radiobuttons的path属性也必指定,当path的值和items中的某条数据值相同的时候对应的radio为选定状态,反之为不选定状态,用法和checkboxs很相似。但要注意的是:checkboxs的path绑定的是集合radiobuttons的path绑定的是单个值:
绑定map的radiobuttons 标签:<br/> <form:radiobuttons path="selectid" items="${contentmodel.testmap}"/>
9.select标签:
会生成一个html select标签,绑定的items数据可以是数组、集合或map会根据items的内容生成select里面的option选项,当path的值和items中的某条数据值相同的时候对应的option为选定状态,反之为不选定状态,用法与radiobuttons很相似:
绑定map的select 标签:<br/> <form:select path="selectid" items="${contentmodel.testmap}"/>
上面的是根据指定的items自动生成的option选项,但我们也可以不指定items手动添加select的option选项:
不绑定items数据直接在form:option添加的select 标签:<br/> <form:select path="selectid"> <option>请选择人员</option> <form:option value="1">路人甲</form:option> <form:option value="2">路人乙</form:option> <form:option value="3">路人丙</form:option> </form:select>
其中添加<option>请选择人员</option> 可以让在没有进行选择的情况下不指定任何默认值。
下面看一下form:option 与option的区别:
不绑定items数据直接在form:option添加的select 标签:<br/> <form:select path="selectid"> <option>请选择人员</option> <form:option value="1">路人甲</form:option> <form:option value="2">路人乙</form:option> <form:option value="3">路人丙</form:option> </form:select><br/> 不绑定items数据直接在html的option添加的select 标签:<br/> <form:select path="selectid"> <option>请选择人员</option> <option value="1">路人甲</option> <option value="2">路人乙</option> <option value="3">路人丙</option> </form:select><br/>
由截图的结果可以看出form:option 正确选择了path中指定的selectid而option没有,说明form:option有数据绑定功能option没有。
另外我们也可以不为select指定items,而把items指定到form:option 上这两种效果基本是一样的,一点区别就是为select指定items再在select里面添加option是不起作用的会被items生成的option覆盖掉,而把items指定到form:option 上则可以再在select里面添加option:
用form:option绑定items的select 标签:<br/> <form:select path="selectid"> <option/>请选择人员 <form:options items="${contentmodel.testmap}"/> </form:select>
10.textarea标签:
textarea 标签: <form:textarea path="remark"/>
会生成一个html textarea标签,通过path属性来指定要绑定的model中的值。
11.hidden标签:
会生成一个type为hidden的html input标签,通过path属性来指定要绑定的model中的值。
12.errors标签:
errors标签的用法在系列(6)—>数据验证中已经说明了,这里不在赘述。
spring mvc表单标签的内容到此结束。
代码下载
注:之前没注意前11篇的示例代码,不知道为什么当时打包上传上去的是没有.project项目文件的,导致下载后不能直接导入eclipse运行,虚拟机又 被我删掉了,这些示例代码也没有备份,但是代码文件还在的,所以可以新建一个dynamic web project把对应的配置文件和controller还有view导入就可以了,给大家造成的不便说声抱歉。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: SQL字符串以及数字常用操作汇总