Thymeleaf作为众多模板引擎中的一种,我最初也是对它充满了陌生,在我学习SpringBoot并且试图通过学习来搭建属于自己的个人博客网站时,前端代码是少不了的,选择Thymeleaf来写模板自然不是因为我学的有多么好,而是因为我选择的教程是用的Thymeleaf,而我又不会其他的…
当然,学习Thymeleaf之前还是需要掌握一点web的知识的,我认为有着web基础多多少少能为我们的Thymeleaf之路提供了一点便利,减少一丢丢的痛苦。
日期格式处理
# 日期格式化处理
${#dates.format(key)}
# 格式化日期,默认的以浏览器默认语言为格式化标准
${#dates.format(key,‘yyyy/MM/dd’)}
# 按照自定义的格式做日期转换
# Year:取年
# Month:取月
# Day:取日
${#dates.year(key)}
${#dates.month(key)}
${#dates.day(key)}
2
3
4
5
6
7
8
9
10
11
12
13
<hr>
dates.format:<span th:text="${#dates.format(time)}"></span><br>
dates.format:<span th:text="${#dates.format(time,'yyyy-MM-dd hh:mm:ss')}"></span><br>
dates.year:<span th:text="${#dates.year(time)}"></span><br>
dates.month:<span th:text="${#dates.month(time)}"></span><br>
dates.day:<span th:text="${#dates.day(time)}"></span><br>
<hr>
2
3
4
5
6
7