2

是否有可能以 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

4

1 回答 1

1

你必须做一些转换。

转换选择列表:

form.add(new DropDownChoice<Integer>("number",
  new AbstractReadOnlyModel<List<Integer>>() {
    public List<Integer> getObject() {
      return MyChoices.getAllAsInts();
    }
  }
);

或选定的选项:

form.add(new DropDownChoice<MyChoices>("number", Arrays.asList(MyChoices.values()) {
  public IModel<?> initModel() {
    final IModel<Integer> model = (IModel<Integer>)super.initModel();

    return new IModel<MyChoice>() {
      public MyChoice getObject() {
        return MyChoice.fromInt(model.getObject());
      }

      public void setObject(MyChoice myChoice) {
        model.setObject(myChoice.toInt());
      }
    };
  }
);
于 2015-01-29T21:00:17.653 回答