是否可以在 th:text 中包含 Html 标签?
例如:
<h2 th:text="'LOCATION INFO Device <strong>' + ${deviceKey} + ' </strong> at ' + ${deviceEventTime} ">
Run Code Online (Sandbox Code Playgroud)
是的,如果您使用th:utext而不是th:text.
<h2 th:utext="'LOCATION INFO Device <strong>' + ${deviceKey} + ' </strong> 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)
(这可能是也可能是不可能,具体取决于您的实际要求。)