如果在前台(JSP)取出后台的对象的属性,这个属性在后台是属于String 类型的,但若这个属性的值为数字,取出在前台就会默认为整形的值,所以在<ww:if> 判断里面不能加引号:<ww:if test="s_shflag=0"><ww:if> <!-- 这是正确写法 s_shflag在后台的类型为String,但是不能给 0 加上 引号判断。-->
<!-- 以下为转的,上面是自己写的 -->
返回值进行区分:
1.如果是String型
- <ww:if test="sftd.equals(\"4\")"></ww:if>[
- <ww:if test="sftd.equals(\"4\")"></ww:if>[
2.如果是char型
- <ww:if test="sftd.equals('4')"></ww:if>[
- <ww:if test="sftd.equals('4')"></ww:if>[
3.如果是int型
- <ww:if test="sftd==4"></ww:if>
- <ww:if test="sftd==4"></ww:if>
在循环中:
- <select name="belong">
- <ww:iterator value="sortBigList" status="index">
- <option value="<ww:property value="id"/>" <ww:if test="%{id==model.belong}">selected</ww:if>><ww:property value="lb"/></option>
- </ww:iterator>
- </select>
- <select name="belong">
- <ww:iterator value="sortBigList" status="index">
- <option value="<ww:property value="id"/>" <ww:if test="%{id==model.belong}">selected</ww:if>><ww:property value="lb"/></option>
- </ww:iterator>
- </select>
注意:id==model.belong,而不是belong==model.belong
定义变量
- <ww:set name="tt1" value="'aaaaaaaaaaaaaa'"/>
- <ww:property value="#tt1"/>
- <ww:set name="tt1" value="'aaaaaaaaaaaaaa'"/>
- <ww:property value="#tt1"/>
注意:字符串要加''
日期显示:
<ww:property value="createTime.toString()" />
<ww:if test="selectedByOthers!='true'">
<input onclick="ST(this); " type="checkbox" name="$$SelectDoc" value="<ww:property value='id'/>" style="border: 0pt;"/>
</ww:if>
<ww:else>
<input type="radio" name="$$SelectDoc" value="<ww:property value='id'/>|<ww:property value='topic'/>"
<ww:if test="id.toString().equals(aboutDocid)">checked</ww:if>
<ww:if test="#status.count % 2">style="border: 0pt;"</ww:if>
<ww:else>style="border: 0pt;background-color:#F7F7F7"</ww:else> >
</ww:else>
在ww:if比较时id.toString().equals(aboutDocid)中的id是长整型,必须通过toString()成为字符串后再与字符型的aboutDocid比较,否则不报错,却也得不到想要的结果。因为这些代码是写在jsp页面的,这个小细节经常忘记,导致显示的结果不正确却又一时想不起原因来。:
转自:http://cissco.iteye.com/blog/206737