Thymeleaf:直接显示变量内容,不带标签

方法1:使用 th:block

<th:block th:text="${msg}" />

方法2:使用 inline

<title>[[${msg}]] - 服务器错误。</title>

Hello, [[${user.name}]]!   //[[]]写法会html转义
Hello, [(${user.name})]!   //[()]写法不会html转义

参考:https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html#inlining

方法3:使用 th:remove

<span th:text="${msg}" th:remove="tag"></span>
上一篇:JDBC和JPA调用储存过程 接收存储过程有返回值


下一篇:SpringBoot--集成thymeleaf