Thymeleaf:th:text 内的 Html 标签

La *_*ell 5 thymeleaf

是否可以在 th:text 中包含 Html 标签?

例如:

<h2 th:text="'LOCATION INFO Device &lt;strong&gt;' + ${deviceKey} + ' &lt;/strong&gt;  at ' + ${deviceEventTime} ">
Run Code Online (Sandbox Code Playgroud)

Met*_*ids 7

是的,如果您使用th:utext而不是th:text.

<h2 th:utext="'LOCATION INFO Device &lt;strong&gt;' + ${deviceKey} + ' &lt;/strong&gt;  at ' + ${deviceEventTime}" />
Run Code Online (Sandbox Code Playgroud)

不过,我个人会这样格式化它:

<h2>
  LOCATION INFO Device 
  <strong th:text="${deviceKey}" />
  at
  <span th:text="${deviceEventTime}">
</h2>
Run Code Online (Sandbox Code Playgroud)

(这可能是也可能是不可能,具体取决于您的实际要求。)