struts1 tag 的使用

<html:checkbox>的用途是把一个对象的属性(比如boolean)和页面的checkbox相对应。但是感觉它本身做的并不完美,实际使用有很多需要注意的地方。

1。对象属性值和checkbox对应。

假设我们的form有个属性class C1, 它有个boolean属性isChecked。我们有两种方式把这个属性的值显示到页面上:

<html:checkbox name="c1" property="default" value="true"/>

<html:checkbox property="c1.default" value="true"/>

 显示效果是一样的,但是如果要提交的话,第一种会提交到request里面的default上面,因此无法跟对象自动绑定。所以我们应当使用第二种表示方式。

 

2。解决unchecked问题

经过上面的方式,我们可以把一个未checked的选中以后提交,后台对象的值相应变成true,但是把一个原值是true的却无法变为false!这可能跟html form提交就不传递该值有关,但struts确实不能帮我们自动处理。有两种方式解决这个问题,一种是在jsp里面加一个同名的tag:

<html:checkbox property="c1.default" value="true"/>
<input type="hidden" name="c1.default" value="false"/>

另一种方法是按照struts文档所说:

WARNING : In order to correctly recognize unchecked checkboxes, the ActionForm bean associated with this form must include a statement setting the corresponding boolean property to false in the reset() method

你可能感兴趣的:(html,bean,jsp,struts)