0

我最近开始使用检票口。我尝试在您的项目示例中使用“Vaynberg 的 Apache wicket”一书中的“链接选择框”。

我从书中重新创建了示例:

public class LinkedSelectboxesPage extends WebPage {

private Country country;
private City city;

public LinkedSelectboxesPage() {
    Database.buildData();
    country = Database.getCountries().get(0);

    FeedbackPanel feedbackPanel = new FeedbackPanel("feedback");
    add(feedbackPanel);

    Form form = new Form("form");
    add(form);

    DropDownChoice<Country> countries = new DropDownChoice<Country>(
            "countries",
            new PropertyModel<Country>(this, "country"),
            new CountriesModel(),
            new ChoiceRenderer<Country>("name", "code")) {
        protected boolean
        wantOnSelectionChangedNotifications() {
            return true;
        }

        protected void
        onSelectionChanged(Country newSelection) {
            city = null;
        }
    };
    countries.setRequired(true);
    form.add(countries);

    DropDownChoice<City> cities = new DropDownChoice<City>(
            "cities",
            new PropertyModel<City>(this, "city"),
            new CitiesModel(),
            new ChoiceRenderer<City>("name", "code"));
    cities.setRequired(true);
    form.add(cities);
}

private static class CountriesModel extends LoadableDetachableModel<List<? extends Country>> {
    protected List<? extends Country> load() {
        return Database.getCountries();
    }
}

private class CitiesModel extends LoadableDetachableModel<List<? extends City>> {
    protected List<? extends City> load() {
        return Database.getCities(country.getCode());
    }
}
}

当我尝试在我的项目中使用链接选择框时,没有实现固定在函数体前面的断点。

public class AddArticlePanel extends Panel {

private Type type;
private Subtype subtype;

private List<Type> typesList;
private List<Subtype> subtypesList;

@SpringBean
@SuppressWarnings("unused")
public static ITypeDao typeDao;

@SpringBean
@SuppressWarnings("unused")
private ISubtypeDao subtypeDao;

public AddArticlePanel(String id) {
    super(id);

    this.typesList = typeDao.loadAllTypes();
    this.type = this.typesList.get(0);

    Form form = new Form("form");
    add(form);

    FormComponent<String> tbTitleArticle = new TextField<String>("titleArticle").setRequired(true);
    form.add(tbTitleArticle);

    FormComponent<String> taTextArticle = new TextArea<String>("textArticle").setRequired(true);
    form.add(taTextArticle);

    DropDownChoice<Type> ddcTypes = new DropDownChoice<Type>(
            "typeArticle",
            new PropertyModel<Type>(this, "type"),
            new TypesModel(),
            new ChoiceRenderer<Type>("name", "id")) {

        protected boolean wantOnSelectionChangedNotifications() {
            return true;
        }

        protected void onSelectionChanged(Type newSelection) {
            type = null;
        }
    };
    ddcTypes.setRequired(true);
    form.add(ddcTypes);

    DropDownChoice<Subtype> ddcSubtypes = new DropDownChoice<Subtype>(
            "subtypeArticle",
            new PropertyModel<Subtype>(this, "subtype"),
            new SubtypesModel(),
            new ChoiceRenderer<Subtype>("name", "id"));
    ddcSubtypes.setRequired(true);
    form.add(ddcSubtypes);
}

public AddArticlePanel(String id, IModel<?> model) {
    super(id, model);
}

private static class TypesModel extends LoadableDetachableModel<List<? extends Type>> {
    protected List<? extends Type> load() {
        return typeDao.loadAllTypes();
    }
}

private class SubtypesModel extends LoadableDetachableModel<List<? extends Subtype>> {
    protected List<? extends Subtype> load() {
        return subtypeDao.loadSubtypesByTypeId(type.getId());
    }
}
}

我不明白为什么会这样。请帮助我,并为我的英语感到抱歉。

4

3 回答 3

1

我的解决方案是使用 Ajax:

ddcTypes.add(new AjaxFormComponentUpdatingBehavior("onchange")
{
    @Override
    protected void onUpdate(AjaxRequestTarget target)
    {
        target.add(ddcSubtypes);
    }
});

但我想了解为什么面板之前没有工作(没有 Ajax)......

????!!!!!!!

于 2012-07-11T14:26:56.863 回答
1

在您的 onSelectionChanged 方法中,您将类型设置为 null。这是支持所需 DropDownChoice 字段 ddcTypes 模型的成员,而不是书中国家-ddc onSelectionChanged 方法重置城市变量的示例。

在您的情况下,您将对类型的每一次更改都重置为 null,从而使您的表单无效并阻止它做任何有用的事情。

于 2012-07-10T08:04:51.403 回答
0

我已经使用 wicket 1.5.7。

我在类 AddArticlePage 中使用类 AddArticlePanel

public class AddArticlePage extends AbstractBasePage {
    public AddArticlePage() {
        add(new HeaderPanel("header"));
        add(new MenuPanel("menu"));
        add(new AddArticlePanel("body")); // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
        add(new FooterPanel("footer"));
    }
}

和类 BlogApplication 中使用的类 AddArticlePage:

public class BlogApplication extends WebApplication {

    @Override
    public void init() {
        this.getComponentInstantiationListeners().add(new SpringComponentInjector(this));
        Injector.get().inject(AddArticlePanel.class);

        mountPage("/add-article/", AddArticlePage.class);
    }

    @Override
    public Class<? extends Page> getHomePage() {
        return IndexPage.class;
    }
}

当我打开带有链接选择框的页面时,此构造不起作用。但是如果更改类 BlogApplication ->

public class BlogApplication extends WebApplication {

    @Override
    public void init() {
        this.getComponentInstantiationListeners().add(new SpringComponentInjector(this));
        Injector.get().inject(AddArticlePanel.class);

    }

    @Override
    public Class<? extends Page> getHomePage() {
        return AddArticlePage.class; // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    }
}

它发生了魔法 - 链接的选择框可以正常工作。也许我不太明白如何/何时/为什么使用 WebApplication.mountPage(string, class) 方法。

于 2012-07-10T17:39:30.953 回答