如何 select 来自 Vaadin-listBox 的项目?

How to select items from a Vaadin-listBox?

我正在尝试 select Vaadin listBox 元素中的项目。 我用数据库中对象的数组列表填充列表框。在 selecting 对象/列表项之后, 我想用 selected 对象的属性填充文本字段。 到目前为止,这是我的代码。我已经尝试了很多,但无法正常工作:/

// creating a ArrayList - listOfItems - filled with Items from the Database

        listBox.setItems(listOfItems);
        listBox.setHeight("100px");
        add(listBox);

        Div value = new Div();
        listBox.addValueChangeListener(event -> {
            if (event.getValue() == null) {
                Notification.show(event.getValue().toString());
            } else {
                Notification.show("value is null");
            }
        });

有人知道为什么吗?

提前致谢

您可以使用列表框 class 的 .setValue(...) 方法。但是当您从数据库加载数据时,您必须确保您正在 selecting 的项目与您通过 .setItems(...) 方法提供的项目之一完全相同。这意味着,所提供的项目之一必须具有与您想要 select 的项目完全相同的 hashCode。否则你的 selection 可能无法工作。

有关示例,请查看:https://vaadin.com/components/vaadin-list-box/java-examples

你这里有一个错误:

        listBox.addValueChangeListener(event -> {
            if (event.getValue() == null) {
                Notification.show(event.getValue().toString());
            } else {
                Notification.show("value is null");
            }
        });

if 语句的第一部分,您调用了event.getValue().toString(),这将导致空指针异常,因为event.getValue() 为空。所以将条件翻转为 if (event.getValue() != null)