thymeleaf th:text 不显示标签

来源:互联网 发布:重庆编程培训 编辑:程序博客网 时间:2024/06/05 06:34

这个问题找了好久终于在谷歌上发现解决办法了

第一种解决办法,通过th:inline属性

<h1 th:inline="text" >   [[${header.title}]]   <small th:text="${header.subtitle}">Subtitle</small></h1>

第二种解决办法,通过th:remove属性

<h1>    <span th:text="${header.title}" th:remove="tag">title</span>    <small th:text="${header.subtitle}" >Subtitle</small></h1>
两种的方式都可以在绑定数据后没有标签

原创粉丝点击