用thymeleaf用标签给页面select下拉框赋值怎么实现

用thymeleaf用标签给页面select下拉框赋值怎么实现,第1张

如果th:field="{paymentMethod}"的paymentMethod对象也是个list对象的话,multiple select也是直接使用就OK了。
但如果paymentMethod是个以,号分隔的字符串的话,则只能自己处理了下,thymeleaf还没找到怎么整呢,处理方式如下:
<select multiple="multiple" class="width-40 chosen-select" name="knowledgePointIdSet" data-placeholder="请选择课件分类">
<option th:each="category:${knowPointList}" th:value="${categoryid}"
th:selected="${#stringscontains(instanceknowledgePointIdSet,categoryid)}"
th:text="${categoryname}" >模块名称</option>
</select>

以上就是关于用thymeleaf用标签给页面select下拉框赋值怎么实现全部的内容,包括:用thymeleaf用标签给页面select下拉框赋值怎么实现、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9707723.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-01
下一篇 2023-05-01

发表评论

登录后才能评论

评论列表(0条)

保存