怎样才能显示像" 1"
的双倍目前双人出现 1.0
但我也希望例如1,5,
。
但如果我只有1
(the numbers after the comma or dot is zero, than I want to have a value without comma or dot
)
我该怎么做? 感谢
答案 0 :(得分:0)
我想这就是你想要实现的目标:
<h:outputText value="1,0">
<f:convertNumber minFractionDigits="0" />
</h:outputText>
将输出1
<h:outputText value="1,5">
<f:convertNumber minFractionDigits="0" />
</h:outputText>
将输出1,5
在测试时,请确保使用正确的小数点分隔符,具体取决于您的区域设置。
你可以用f:convertNumber标签多播一下。 http://www.jsftoolbox.com/documentation/help/12-TagReference/core/f_convertNumber.html