我想将一个字符串列表发布到我的控制器。 但它始终只取第一个选定值。
my thymeleaf html表格:
<form action="/add" method="post">
<div class="form-group">
<label for="roleId">ID</label> <input type="text" class="form-control" id="roleId" name="id" required="required" />
</div>
<div class="form-group">
<label for="rolePrivileges">Privileges</label>
<select class="form-control" id="rolePrivileges" name="privileges" multiple="multiple" size="10" required="required">
<option th:each="type : ${privilegesList}" th:value="${type}" th:text="${type}">Privilege</option>
</select>
</div>
<button type="submit" class="btn btn-default">Create</button>
</form>
我的控制员:
@RequestMapping(value = "/add", method = RequestMethod.POST)
public String addSomething(Model model, @ModelAttribute("id") String id,
@ModelAttribute("privileges") List<String> privileges) {
// add something with a service
return "redirect:/roles";
}
答案 0 :(得分:5)
我认为你必须用
注释特权@RequestParam("privileges")
它不是ModelAttribute,但是您从请求
接收它修改:两个SO主题,以便更好地理解@RequestParam和@ModelAttribute之间的区别。