Thymeleaf在选择select-选项后带来值

时间:2019-07-17 12:28:07

标签: jquery thymeleaf

在此处选择角色后:

<select class="form-control" name="role-id" id="role-id" >
    <!-- th:object="${dto}" -->
    <!-- th:field="*{roleId}" -->
    <!-- th:action="${'/menu/assign-roles'}" -->
    <option value="0">
        Rol seciniz
    </option>
    <option th:each="role : ${roleList}" th:value="${role.id}" th:text="${role.name}">
    </option>
</select>

在同一HTML中,在另一个div中,我要显示以下内容:

<div id="current-menus-for-role-checkbox"
     th:if="${#maps.containsKey(menusForEachRole, dto.roleId)}">
</div>

我使用的是dto,它是来自模型的空值,因为我无法从第一个角色ID中获取角色ID,而第二个角色ID也无法使用,而且没有任何后端调用。如何使用?我需要像onchange这样的东西吗?

0 个答案:

没有答案