gpt4 book ai didi

spring-boot - 在 thymeleaf over map 中选择选项中的嵌套循环?

转载 作者:行者123 更新时间:2023-12-05 01:40:31 24 4
gpt4 key购买 nike

我正在从我的 Controller 类中传递 包含整数和列表的 map 以供查看。在内部 View 中,我有选择选项,我只想在选项中显示列表值,但我不知道如何实现它。请帮我做这件事。

控制者

Map<Integer, List<String>> deviceidsAndwhatToUpdateText = new HashedMap<Integer, List<String>>();

查看

<select class="form-control select-checkbox"
id="WhatToUpdate" multiple="multiple">
<option th:each="idsAndText : ${deviceidsAndwhatToUpdateText}"

th:value="${idsAndText.value}"
th:utext="${idsAndText.value}">Wireframe</option>

</select>

最佳答案

这将列出您 map 中的所有字符串,这是您想要的吗?

<select class="form-control select-checkbox" id="WhatToUpdate" multiple="multiple">
<th:block th:each="idsAndText : ${deviceidsAndwhatToUpdateText}">
<option th:each="text : ${idsAndText.value}" th:value="${text}" th:text="${text}" />
</th:block>
</select>

关于spring-boot - 在 thymeleaf over map 中选择选项中的嵌套循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56442765/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com