0

我有一个带有一些数据的 selectOneListBox。选择一个值并单击“删除”按钮后,必须删除该值。我需要在我的 Bean 中执行此操作。我认为问题出在 if 语句或codeValue

我的xhtml:

  <p:selectOneListbox id="list" value="#{codelistBean.codeValue2}"                  style="height:300px;overflow:scroll;margin:1px;width:250px"
    autoUpdate="true">
    <f:selectItems value="#{codelistBean.code2Value}" />
    </p:selectOneListbox>`

我的豆子:

变量

String codeValue;

 private static Map<String, Object> codeValue = new LinkedHashMap<String, Object>();

在这里,我将一些值放入地图:

codeValue.put(getLabel(), getValue()); 

删除方法

public void removeCode(ActionEvent e) {

        for (Iterator<Map.Entry<String, Object>> it = codeValue.entrySet()
                .iterator(); it.hasNext();) {

            Entry<String, Object> entry2 = it.next();

            if (entry2.getKey().equals(codeValue.get(codeValue2))) {
                it.remove();

            }
        }

    }

最后,我将地图返回给 JSF 以显示它

public Map<String, Object> getCode2Value() {
        return codeValue;
    }

感谢帮助!

4

1 回答 1

0

您可以定义一个 s 列表,而不是使用静态 HashMap SelectItem

String codeValue2;
List<SelectItem> codeValue = new ArrayList<SelectItem>();

//getters & setters

它与您的 HashMap 一样保存键/值对,唯一的区别是值/标签顺序:

codeValue.add(new SelectItem(value,label))

删除函数可以简化:

   public void removeCode(ActionEvent e) {

       SelectItem remove = null;
       for (SelectItem item : codeValue) {
           if (item.getValue().equals(codeValue2)) {
               remove = item;
           }
       }
       codeValue.remove(remove);
    }

请注意,您也可以ActionEvent e从方法头中删除参数,这不是必需的。

<p:selectOneListbox id="list" value="#{codelistBean.codeValue2}"
                    style="height:300px;overflow:scroll;margin:1px;width:250px"
                    autoUpdate="true">
    <f:selectItems value="#{codelistBean.codeValue}" />
</p:selectOneListbox>

在您的 jsf 页面上,f:selectItems value="#{codelistBean.codeValue}"指向List<SelectItem>while的点value="#{codelistBean.codeValue2}"代表实际选择。

最后,不要忘记list在执行 REMOVE 按钮后更新您的:

<p:commandButton actionListener="#{codeListBean.removeCode}" 
                 value="REMOVE" update="list"/>
于 2012-11-12T14:16:33.233 回答