繁体   English   中英

如何在 Thymeleaf 中添加换行符或换行符?

[英]How to add a break or new line in Thymeleaf?

这是我使用 Thymeleaf 模板的代码

<form>
     <label>
          <input type="checkbox" th:each="activeMeal : ${activeMeals}" th:text="${activeMeal.itemName}">
     </label>
</form>

这是生成的:

在此处输入图像描述

我希望每个复选框在单独的行中。 在普通的普通 HTML 中,我会使用<br/>标签来创建中断。 但它似乎在 Thymeleaf 标签内不起作用。

<th:block th:each="activeMeal : ${activeMeals}">
    <input type="checkbox" name="selectedActive" id="selectedActive" th:value="${activeMeal.itemName}"/>
    <label th:text="${activeMeal.itemName}"></label>
    <br/>
</th:block>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM