0
我在JSP上填充了內容表,每行有一個<button>
當我們點擊那個按鈕表單值到控制器然後我將所有值設置爲jsp使用model.addAttribute()
在那個jsp中,一些字段是下拉列表,現在我想將表單值作爲默認值顯示給下一個jsp,任何人都可以幫我進一步處理。在春天mvc顯示默認值在下拉列表jsp jsp
示例代碼我在JSP
<form:select path="country">
<form:options items="${countryList}" itemLabel="country"/>
</form:select>
寫道
在控制器的方法
@RequestMapping("/")
public String getClist(@ModelAttribute("form") FormBean fb){
sysout(fb.getCountry());
List<Country> c =userdao.getCountryList();
model.addAttribute("countryList",c);
}
我沒有得到你,我明白你的意思是你想顯示一個默認選項'select'就像「Please select option」一樣。請澄清,如果我錯了。 – Amogh