每个th:value循环的胸腺

时间:2018-11-16 13:11:39

标签: post foreach parameters thymeleaf

我以这种方式发布参数:

<tr><td>Customer:</td><td><input type="text" value="" th:value="${var}"></td></tr>
    <input type="hidden" th:name="var" th:value="${var}" />

它工作正常,但是我希望我的HTML文件尽可能容易地进行自定义。通过这种方法,这意味着前端的设计者必须在每条输入线之后放置“输入隐藏线”。

我正在寻找这样的方法:

For each expression variable in this form expend this line:
   <input type="hidden" th:name"currentElement" th:value="${currentElement}" />

您对我有什么提示吗?

请注意:

由于某些原因,我不想使用Spring-Features。我只想使用百里香叶功能。是否可以通过隐藏字段将我的POST参数通过通用的方式添加到URL中的其他服务中?

最诚挚的问候

0 个答案:

没有答案