我在一个 web 应用程序中使用 Spring,使用表单,现在它工作正常,但我想改变一件事,那就是我得到一个错误的时候。我有一个带有两个文本字段和一个选择选项字段的小表单,正是这个选择字段导致了错误。选择选项是从数据库中填充的。
我的代码:edit.jsp
<tr>
<th><label for="parent"></label></th>
<td><sf:select path="parent">
<sf:option value="0" label="Parent" />
<sf:options items="${parentsList}" itemLabel="name" itemValue="ID" />
</sf:select></td>
</tr>
控制器.java
@RequestMapping(value = "/edit", method = RequestMethod.GET, params = {"id"})
public String edit(Model model, @RequestParam("id") int id) {
try {
if (logger.isInfoEnabled()) {
logger.info("Edit category with id {}", id);
}
model.addAttribute("heading", "Edit Category");
model.addAttribute("parentsList", listOfParents());
model.addAttribute(categoryService.getCategory(id));
if (logger.isInfoEnabled()) {
logger.info("Finished");
}
} catch (DataAccessException ex) {
logger.error(ex.getMessage(), ex);
}
return "category/edit";
}
private List<Category> listOfParents() {
List<Category> listOfParents = new ArrayList<Category>();
try {
listOfParents.addAll(categoryService.listCategoryParents());
} catch (DataAccessException ex) {
logger.error(ex.getMessage(), ex);
}
return listOfParents;
}
@InitBinder
public void initBinder(WebDataBinder binder) {
binder.registerCustomEditor(Category.class, "parent", new CategoryEditor(CategoryService));
}
我的编辑器.java
public class CategoryEditor extends PropertyEditorSupport {
private CategoryService categoryService;
public CategoryEditor(CategoryService categoryService) {
this.categoryService = categoryService;
}
@Override
public void setAsText(String text) throws IllegalArgumentException {
if (text.equals("0")) {
this.setValue(null);
} else {
category c = categoryService.getCategory(Integer.parseInt(text));
this.setValue(sc);
}
}
}
当我编辑一个已经存在的帖子时,我希望在表单中预先选择父母,这是我无法开始工作的事情。
有谁能帮助我吗?非常感谢您的时间,我希望我能有所作为。谢谢你。
*编辑*** 我现在已将我的编辑器更改为格式化程序,但没有运气:
@Component
public class CategoryFormatter implements Formatter<Category> {
@Override
public String print(Category parent, Locale locale) {
System.out.println("Formatter Print with ID="+parent.getID());
return Integer.toString(parent.getID());
}
@Override
public Category parse(String id, Locale locale) throws ParseException {
Category parent = new Category();
parent.setID(Integer.parseInt(id));
System.out.println("Formatter Parse with ID="+parent.getID());
return parent;
}
}
但是当我编辑对象时,我仍然没有在我的下拉列表中获得现有值。我在编辑对象上的打印输出:
Formatter Print with ID=1
Formatter Parse with ID=0
Formatter Print with ID=1
Formatter Print with ID=8
我究竟做错了什么?!?(我想稍后添加一个验证器,这就是从编辑器更改为格式化程序的原因)