Struts 2 中的格式编号 <s:property/> tag
我想格式化在Struts 2中按标签显示的数字。有一个值。我该怎么做?我应该使用吗?<s:property value="summary.total"/>
double
OGNL
或者也许我必须使用标签并在resuource文件中定义我的格式?<s:text/>
我想格式化在Struts 2中按标签显示的数字。有一个值。我该怎么做?我应该使用吗?<s:property value="summary.total"/>
double
OGNL
或者也许我必须使用标签并在resuource文件中定义我的格式?<s:text/>
方式更快捷
<s:property value="getText('{0,number,#,##0.00}',{summary.total})"/>
幸运!!
您需要与 一起使用。<s:text/>
<s:param/>
属性文件:
summary.cost= € {0,number,##0.00}
JSP:
<s:text name="summary.cost">
<s:param name="value" value="summary.total"/>
</s:text>
此答案解释了如何使用 和 在格式掩码中。#
0