是否有可能以 Wicket 方式转换选定的 DropDownChoices 值,当表单具有附加了模型的 CompoundPropertyModel 时,该模型具有特定属性的另一种类型。
简单的例子,因为我想我的解释不是很准确:
public enum MyChoices {
ONE(1),TWO(2),THREE(3);
// ... etc
}
public class MyEntityModel {
private int number;
private String text;
}
// the WebPages constructor:
public ChoicePage() {
IModel<MyEntityModel> model = new CompoundPropertyModel<>(new EntityModel());
Form<MyEntityModel> form = new Form<MyEntityModel>("form", model);
add(form);
form.add(new TextField<String>("text"));
form.add(new DropDownChoice<>("choices", Model.of(MyChoices.ONE),
Arrays.asList(MyChoices.values()))
}
提交选择 ONE 的表单时,我希望模型对象具有 value 1
。
我知道,我可以命名 DropDownChoice 组件而不是 MyEntityModel 字段,并在提交后将其值复制到模型中。但这不是 Wickets 模型方法,是吗?
ps:我使用的是 Wicket 6.17.0