2017-06-20 48 views

回答

0

是的,你有什麼作品,如果你使用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> 

(可能會或可能是不可能的,這取決於你的實際需求。)