Tap*_*ose 2 java ajax wicket behavior
这个例外:
java.lang.IllegalStateException: this kind of handler cannot be attached to multiple components; it is already attached to component [MarkupContainer [Component id = textField1]], but component [MarkupContainer [Component id = textField2]] wants to be attached too
at org.apache.wicket.behavior.AbstractAjaxBehavior.bind(AbstractAjaxBehavior.java:70)
at org.apache.wicket.Component.add(Component.java:973)
at info.ems.wicket.page.HomePage.<init>(HomePage.java:23)
Run Code Online (Sandbox Code Playgroud)
由以下代码抛出:
public class HomePage extends MasterPage {
public HomePage() {
AjaxEventBehavior ajaxOnClickBehavior = new AjaxEventBehavior("onClick") {
private static final long serialVersionUID = 1L;
@Override
protected void onEvent(AjaxRequestTarget target) {
// Same behavior of both the textField1 and textField2
}
};
add(new TextField<String>("textField1", new Model<String>("Text Field 1")).add(ajaxOnClickBehavior));
add(new TextField<String>("textField2", new Model<String>("Text Field 2")).add(ajaxOnClickBehavior));
}
}
Run Code Online (Sandbox Code Playgroud)
但这没关系:
public class HomePage extends MasterPage {
public HomePage() {
add(new TextField<String>("textField1", new Model<String>("Text Field 1")).add(new AjaxEventBehavior("onClick") {
private static final long serialVersionUID = 1L;
@Override
protected void onEvent(AjaxRequestTarget target) {
// Behavior of textField1, same as textField2
}
}));
add(new TextField<String>("textField2", new Model<String>("Text Field 2")).add(new AjaxEventBehavior("onClick") {
private static final long serialVersionUID = 1L;
@Override
protected void onEvent(AjaxRequestTarget target) {
// Behavior of textField2, same as textField1
}
}));
}
}
Run Code Online (Sandbox Code Playgroud)
为什么?
谢谢.
添加:
public class HomePage extends MasterPage {
public HomePage() {
add(new TextField<String>("textField1", new Model<String>("Text Field 1")).add(new AjaxOnClickBehavior("onClick")));
add(new TextField<String>("textField2", new Model<String>("Text Field 2")).add(new AjaxOnClickBehavior("onClick")));
}
private class AjaxOnClickBehavior extends AjaxEventBehavior {
private static final long serialVersionUID = 1L;
public AjaxOnClickBehavior(String event) {
super(event);
}
@Override
protected void onEvent(AjaxRequestTarget target) {
// Same behavior of both the textField1 and textField2
}
}
}
Run Code Online (Sandbox Code Playgroud)
基本上,您不能将行为的同一实例分配给多个组件.如果您想提高可读性和可维护性,可以使用:
public class HomePage extends MasterPage {
public HomePage() {
add(new TextField<String>("textField1", new Model<String>("Text Field 1")).add(newOnClickBehavior()));
add(new TextField<String>("textField2", new Model<String>("Text Field 2")).add(newOnClickBehavior()));
}
protected AjaxEventBehavior newOnClickBehavior() {
return new AjaxEventBehavior("onClick") {
private static final long serialVersionUID = 1L;
@Override
protected void onEvent(AjaxRequestTarget target) {
// Same behavior of both the textField1 and textField2
}
};
}
}
Run Code Online (Sandbox Code Playgroud)