gpt4 book ai didi

Thymeleaf:th:text 中的 Html 标签

转载 作者:行者123 更新时间:2023-12-04 02:04:22 27 4
gpt4 key购买 nike

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

例如:

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

最佳答案

是的,如果您使用 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>

(这可能或不可能,取决于您的实际要求。)

关于Thymeleaf:th:text 中的 Html 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44655138/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com