在 JSF 中格式化非小数的双精度数
我有一个 inputText,它从用户那里获取一个值并绑定到一个双精度数。如果值为“5000”,后续页面将显示为“5000.0”。 是否有任何方法可以对其进行格式化,以便在用户输入非小数时,它不会显示小数?
示例:
用户输入“5000” 显示“5000”
用户输入“5000.1” 显示“5000.1”
<h:inputText value="#{sessionScope.eventDO.area}" id="areaInTxtId">
<f:convertNumber pattern="###0"/>
</h:inputText>
我尝试使用下面的 f:convertNumber 标记,但收到此错误:
java.lang.ClassCastException: java.lang.Long 无法转换为 java.lang.Double
我不想更改任何 Java 代码。仅呈现双人。
I have an inputText that takes a value from the user and is bound to a double. If the value is "5000", subsequent pages will show it as "5000.0". Is there any way to format it such that if the user enters a non-fractional number, it won't show the decimal?
Examples:
User enters "5000"
Show "5000"
user enters "5000.1"
Show "5000.1"
<h:inputText value="#{sessionScope.eventDO.area}" id="areaInTxtId">
<f:convertNumber pattern="###0"/>
</h:inputText>
I've tried using the f:convertNumber tag below but I get this error:
java.lang.ClassCastException:
java.lang.Long cannot be cast to
java.lang.Double
which I don't want to change any of the Java code. Only the presentation of the double.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您找不到模式,您可以编写自己的
NumberConverter
扩展。我从未尝试过,但它的工作原理应该与此类似:以这种方式在 Facelet 中使用转换器:
If you don't find a pattern you could write your own extension of
NumberConverter
. I never tried it, but it should work similiar as this:Use the converter in the facelet this way:
转换器只会转换数字以供进一步使用。如果您想在与用户交互时添加特定行为,请尝试使用 javascript“onkeyup”事件并使用提供的数据进行操作。表示是特定于用户的,因此应该位于服务器之外。
Converter will just convert the number for further usage. If you want to add specific behaviour while interacting with user, try and use javascript "onkeyup" event and manipulate with the data supplied. Presentation is user-specific and thus should be outside the server.