freemarker常用值格式化方法

Posted 技术宅de小坑

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了freemarker常用值格式化方法相关的知识,希望对你有一定的参考价值。

  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常用值格式化方法的主要内容,如果未能解决你的问题,请参考以下文章

FreeMarker常用语法

FreeMarker常用的方法

电商面试问题

在 ftl 中打印对象类型

FreeMarker学习(常用表达式)

Freemarker常用技巧