我具有一个模型属性(区域),可以绑定到多个表单元素,如下所示:
<select th:field="*{region}" class="custom-select" id="country" style="padding: 0px">
<option value="a" selected>Select one..</i></option>
<option th:each="country : ${counties}" th:value="${country.id}" th:text="${country.name}"
selected></option>
</select>
<select th:field="*{region}" class="custom-select" id="state" style="padding: 0px">
<option value="a" selected>Select one..</i></option>
<option th:each="state : ${states}" th:value="${state.id}" th:text="${state.name}"
selected></option>
</select>
如图所示,模型的区域属性可以绑定到国家或州,并且我有一个无线电组供用户选择两者之一。我的问题是如何确定要传递给控制器的信号。有没有办法为模型动态设置th:field,还是我们有其他可行的解决方案?