我想做2个选定的列表。
在我的控制器中,我从数据库传递给模板两个列表,并使用标准选择列表选项,我可以在两个列表中看到所有正确的值,首先我看到机构的第二个名称中的部门名称(所有可能的机构)。
<option th:each="dept : ${departments}" th:value="${dept.details.departmentFullName}" th:text="${dept.details.departmentFullName}"></option>
同样适用于研究所。 我希望在第二个选定列表中选择仅从首选列表中的选定部门获取机构(按机构表中的部门ID)。
我怎样才能在百里香中做到这一点?