关于在struts2中用ognl表达式截取时间长度

功夫不負有心人:终于弄出来了
首先导入标签库<%@ taglib uri=”/struts-tags” prefix=”s”%>

${postTime }
<s:if test="%{(postTime.toString()).length()>0}">
<s:property value="(postTime.toString()).substring(0)"/>
<s:property value="getText(postTime).length()"/>
    </s:if> 

先前写的是:

<s:if test="%{getText(postTime)).length()>0}">
<s:property value="(getText(postTime)).substring(0)"/>
<s:property value="getText(postTime)).length()"/>
    </s:if> 

这样出来的结果是前两位数不见了,郁闷

你可能感兴趣的:(struts,标签,struts2.0)