gpt4 book ai didi

java - 如何将 List 从 Controller 传递到
in Spring 4. 0.0

转载 作者:行者123 更新时间:2023-12-01 10:14:25 25 4
gpt4 key购买 nike

我有一个具有countryName属性的对象,方法getCountryName()通过使用以下查询从数据库获取所有countryName:

SELECT DISTINCT countryName from jobs

现在我想将此列表传递到 jsp 页面的表单中,如下所示:

<form:form>
<form:select>
<form:options> List of country name </form:options>
</form:select>
</form:form>

有人有想法吗?我正在使用 Spring 4.0.0 REALEASE。

为了更容易理解,我的 Controller 中已经有一个注释

@ModelAttribute("countries")
public List<String> getListCountryName(){
return dao.getCountryName() ;

}

我如何传递该列表以在 spring 的表单标签中查看?

最佳答案

写一些像这样的东西:

 <form:form>
<form:select path="commandAttribute">
<form:option value="-" label="List of country namet"/>
<form:options items="${countryList}" itemValue="countryName " itemLabel="countryName "/>
</form:select>
</form:form>

引用http://www.mkyong.com/spring-mvc/spring-mvc-dropdown-box-example/

关于java - 如何将 List<String> 从 Controller 传递到 <form :select> in Spring 4. 0.0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35993807/

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