Thymeleaf

总结部分Springboot使用Thymeleaf渲染html容易出现的问题:

1.xmlns:th="http://www.thymeleaf.org">,必须添加xmlns:th="http://www.thymeleaf.org;

2.头条资讯      [[${#dates.format(new java.util.Date().getTime(), 'yyyy-MM-dd')}]] ,这是获取当前时间然后进行格式化;

3.

th:each="vo:${vos}">  

      

  • th:text="${vo.get('news').likeCount}">
  •   这是要进行循环,获取每个值;

    4.<img class="content-img" th:src="${vo.get('news').image}"/>,这是显示图片,src前面要加上th: ;

    5.th:href="@{'/user/'+${vo.get('user').id}}">,这是点击图片以后要跳转到其它页面,href前面要加上th:,路径前面加上@符号,另外路径='字符串'+动态参数

    6.以下是我判断user是否为null,为null显示注册登录,否则显示user的name。

     7.日期转换:

    你可能感兴趣的:(Thymeleaf)