具有特定整数的Thymeleaf迭代,但不使用数组大小​​或索引

时间:2018-01-15 03:38:21

标签: iteration thymeleaf

有没有人知道是否可以使用百万美元模板迭代一个不是来自索引或数组大小的特定数值? 例如:  对于(I = 0; I< 4;我++)。 所以类似于for循环的东西,是的,我看过百里香的文档。 在此先感谢!!

希望这会有所帮助。下面的表格将用于获取化学名称以及其他一些其他字段的详细信息。我想重复表单字段一定次数,由用户确定。因此,如果询问用户"您希望将多少化学品添加到列表中?"答案是3我希望表格字段重复3次。

<form method="post" th:object="${reagent}">
    <div>
    <label th:for="chemName">Compound/Reagent</label>
    <input th:field="*{chemName}" />
    <span th:errors="*{chemName}"></span>
    </div>
    <div>
    <label th:for="mw">Molecular Weight(g/mol)</label>
    <input th:field="*{mw}"/>
        <span th:errors="*{mw}"></span>
    </div>
    <div>
    <label th:for="density">Density(g/L)</label>
    <input th:field="*{density}"/>
        <span th:errors="*{density}"></span>
    </div>
    <div>
    <label th:for="hazard">Hazards</label>
    <textarea th:field="*{hazard}"></textarea><br/><br/>
        <span th:errors="*{hazard}"></span>
    </div>
    <br/>
    <input type="submit" value="Add Chemical"/>
</form>

0 个答案:

没有答案