formatNumber : 如何在数字后面添加 2 位小数?
我正在使用 grails formatNumber,我想以十进制格式显示我的数字。
我想将 10 显示为 10.00 或 0 表示 0.00,保留 2 位小数。
怎么办?
I am using grails formatNumber and I would like to display my numbers in decimal format.
I would like to display 10 as 10.00
or 0 as 0.00 with 2 decimal digits.
how to do that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我相信您正在寻找如何使用 Grails 的 formatNumber 来执行此操作标记
结果
formatNumber 标记使用 DecimalFormat 用于
format
参数I believe that you were looking for how to do this with Grails' formatNumber tag
results in
The formatNumber tag uses DecimalFormat for the
format
parameterJava 5?
Java 4?
(凭记忆,可能有错别字)
Java 5?
Java 4?
(from memory, may contain typos)
或者使用
NumberFormat
方式:使用 Junit 进行断言。
查看
DecimalFormat< 的文档/code>
了解如何为构造函数创建格式化字符串。
Or using the
NumberFormat
way:Asserting with Junit.
Have a look at the documentation for
DecimalFormat
for how to create the formatting String for the constructor.您应该按照 grails docu 中的描述使用它
You should use it as it is described in the grails docu