我遇到表单问题:复选框。我不能让它显示选定的值。当我选择值并提交时,正确的值将显示在数据库中。当我加载页面时,未选中所有值(复选框)。
以下元素位于此内:
<form:form role="form" commandName="user" class="form-horizontal" action="${form_url}">
</form:form>
这很好用:
<form:checkboxes items="${availableRoles}" path="roles" itemLabel="role" itemValue="id" element="div class='checkbox'"/>
这不起作用:
<c:forEach items="${availableRoles}" var="r" varStatus="status">
<div class="checkbox">
<form:checkbox path="roles" label="${r.description}" value="${r.id}"/>
</div>
</c:forEach>
这是我的域类:
public class User {
private List<Role> roles;
public List<Role> getRoles() {
return roles;
}
public void setRoles(List<Role> roles) {
this.roles = roles;
}
这是我的自定义属性编辑器:
public class RolePropertyEditor extends PropertyEditorSupport {
@Override
public void setAsText(String text) {
Role role = new Role();
role.setId(Integer.valueOf(text));
setValue(role);
}
}
Controller有这种方法:
@InitBinder
public void initBinder(WebDataBinder binder) {
binder.registerCustomEditor(Role.class, new RolePropertyEditor());
}
控制器方法:
@RequestMapping(value = "/update/{userId}", method = RequestMethod.GET)
public String updateUser(@PathVariable Integer userId, Model model) {
User user = userService.getByUserId(userId);
List<Role> availableRoles = roleService.getAllRoles();
model.addAttribute("availableRoles", availableRoles);
model.addAttribute("user", user);
return "user/update";
}
答案 0 :(得分:1)
调试会话后,我找到了解决方案。
由于Spring内部,JSP应该如下所示:
<c:forEach items="${availableRoles}" var="r">
<div class="checkbox">
<form:checkbox path="roles" label="${r.description}" value="${r}" />
</div>
</c:forEach>
请注意,value是item(r),而不是像r.id。
这样的item成员此外,您需要在自定义PropertyEditor中实现getAsText。
@Override
public String getAsText() {
Role role = (Role) this.getValue();
return role.getId().toString();
}