<div th:fragment="used_tags(title, usedTags)"> <div th:if="${!#lists.isEmpty(usedTags)}" class="card"> <div class="card-header" style="background-color: white;"> <span th:text="${title}">常用标签</span> </div> <div class="card-body"> <a th:each="tag : ${usedTags}" th:text="${tag.name}" th:href="${'/tag/' + tag.name}" th:style="${'padding: 2px 10px;border-radius: 32px;display: inline-block;margin: 5px;font-size: 10px;border: 1px solid ' + tag.color + ';'}" target="_blank" href="#" ></a> </div> </div> </div>
时间: 2024-01-03 07:31:03 浏览: 68
thymeleaf th fragment高级应用 – Pure nonsense.rar
这段代码是一个用于显示常用标签的片段。它包含了一个标题和一组标签。如果标签列表不为空,将显示一个带有白色背景的卡片。卡片的标题使用了变量" title "的值。标签列表中的每个标签将以链接的形式展示,链接的文本为标签的名称,链接的地址为"/tag/标签名称"。标签的样式由标签的颜色属性决定。整个片段最终会被渲染成HTML代码。
阅读全文