在Thymeleaf中绑定两个隐藏的值

时间:2015-09-27 13:29:50

标签: spring spring-mvc thymeleaf

我有一个复选框,它与后端的两个值绑定。我的问题是它只绑定一个值并将另一个值传递为null又名我的tmpltId。如何在Thymleaf中绑定两个隐藏的值,不要担心我有一个getter和setter方法。我只需要从前面传递值。救命!!!

<ul class="list-unstyled">

<li th:each="gcf : ${gcfs}">

<input type="checkbox" th:field="*{gcfId}" th:value="${gcf.gcfId}" th:text="${gcf.templateDesc}"/>

My Code is similar to this but no one has given an answer for this

1 个答案:

答案 0 :(得分:0)