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

 我来答
育知同创教育
2016-06-15 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
展开全部

thymeleaf用标签给页面select下拉框赋值的实现方法:

1、定义type.java

public class Type {
   private Integer id;
   private String type;
  ...getters and setters
}

2、定义SeedStarterMngController.java,将来给select的option填充值:

@ModelAttribute("allTypes")
   public List<Type> populateTypes() {
       Type type1 = new Type();
       type1.setId(1);
       type1.setType("OUTDOOR");

       Type type2 = new Type();
       type2.setId(2);
       type2.setType("INDOOR");

       List<Type> tipos = new ArrayList<Type>();
       tipos.add(type1);
       tipos.add(type2);
       return tipos;
   }

3、填充方法实现页面seedstartermng.html:

<select th:field="*{type}">
       <option th:each="type : ${allTypes}" th:value="${type.id}" th:text="${type.type}">typeSelect</option>
</select>

4、实现效果:

千锋教育
2016-06-06 · 做真实的自己 用良心做教育
千锋教育
千锋教育专注HTML5大前端、JavaEE、Python、人工智能、UI&UE、云计算、全栈软件测试、大数据、物联网+嵌入式、Unity游戏开发、网络安全、互联网营销、Go语言等培训教育。
向TA提问
展开全部
如果你 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="${category.id}"

th:selected="${#strings.contains(instance.knowledgePointIdSet,category.id)}"

th:text="${category.name}" >模块名称</option>

</select>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式