0

我有一个带有两个布尔字段的用户对象:

//User Bean
public class Users {
  private Boolean showContactData;
  private Boolean showContactDataToContacts;
  // Getters + Setters
}

我想使用 Apache Wicket 在 UI 中将其显示为 RadioChoice。

HTML部分的片段:

<input type="radio" wicket:id="community_settings"/>

在 Wicket 中带有收音机的 Java 表单

public class UserForm extends Form<Users> {
  public UserForm(String id, Users user) { 
    super(id, new CompoundPropertyModel<Users>(user));
    RadioChoice rChoice = new RadioChoice<Long>("community_settings", choices, renderer);
    add(rChoice );
  }
}

我现在的问题是我当然在用户对象中没有属性 community_settings 。我只是想将这两个布尔值映射到 UI 中的单选选项。

我怎么能在 Wicket 中做到这一点?

谢谢!塞巴斯蒂安

4

1 回答 1

3

您需要一个模型来映射数据:

RadioChoice<Long> rChoice = new RadioChoice<Long>("community_settings", new IModel<Long>() {
    public Long getObject() {
        if (user.getShowContactData() && user.getShowContactDataToContacts()) {
            return 1L;
        }
        // ...
    }

    public void setObject(Long choice) {
        if (choice == 1) {
            user.setShowContactData(true);
            user.setShowContactDataToContacts(true);
        } else if (choice == 2) {
            // ...
        }
    }

    public void detach() {
    }
}, choices);

顺便说一句,我个人会使用Enum,所以根本没有特殊的映射。看起来你做的事情有点“低级”,所以检票口模型的东西会感觉很麻烦。如果合适,请尝试使用对象而不是原始类型。

于 2012-09-09T17:37:02.927 回答