码迷,mamicode.com
首页 > 其他好文 > 详细

freemarker常用值格式化方法

时间:2016-06-07 14:57:23      阅读:444      评论:0      收藏:0      [点我收藏+]

标签:

  freemarker常用的值格式化方法:

1、${price?string(‘0.00‘)}

对price进行格式化,小数点后不足2位用0补足。

比如:price=1

输出:1.00

 

2、${price?string(‘#.##‘)}

对price进行格式化,小数点后多余2位只保留2位,少于2位显示实际位数。

比如:price=1.234

输出:1.23

 

3、${price?string.currency}

对price进行格式化,显示为货币格式。

比如:price=1

输出:¥1.00

 

4、${price?string.percent}

对price进行格式化,显示为百分比。

比如:price=1

输出:100%

 

freemarker常用值格式化方法

标签:

原文地址:http://www.cnblogs.com/pcheng/p/5566773.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!