Thymeleaf:th:text中的Html标签

时间:2017-06-20 13:57:34

标签: thymeleaf

是否可以在th:text?

中包含Html标签

例如:

<h2 th:text="'LOCATION INFO Device &lt;strong&gt;' + ${deviceKey} + ' &lt;/strong&gt;  at ' + ${deviceEventTime} ">

1 个答案:

答案 0 :(得分:1)

是的,如果您使用th:utext代替th:text,则可以使用的内容。

<h2 th:utext="'LOCATION INFO Device &lt;strong&gt;' + ${deviceKey} + ' &lt;/strong&gt;  at ' + ${deviceEventTime}" />

我个人会这样格式化,但是:

<h2>
  LOCATION INFO Device 
  <strong th:text="${deviceKey}" />
  at
  <span th:text="${deviceEventTime}">
</h2>

(根据您的实际要求,可能会或可能不会。)

相关问题