gpt4 book ai didi

jsf - 如何将 SelectManyCheckbox 与两个 ArrayList 一起使用? - Primefaces

转载 作者:行者123 更新时间:2023-12-02 04:53:22 25 4
gpt4 key购买 nike

我正在尝试实现 <p:selectManyCheckbox> 但我没有成功。

现在我有以下架构:

Course - have many Disciplines
Discipline - belongs to none, one or many Courses.

Course类(class)我有两个ArrayList<Discipline> :

public class CourseMBean{

(...)
// Stores all disciplines
private static ArrayList<Discipline> allDisciplines;

// Stores only the disciplines that's already associated with this course.
private static ArrayList<Discipline> courseDisciplines;

(get and set for the arraylists)
(...)
}

所有数据都来自 MYSQL 数据库,但这不是问题所在。现在我想创建一个新类(class),所以我的类(class)学科中没有任何内容。

我想在复选框中显示所有学科,并希望当用户选择一个复选框时,将此复选框的对象学科添加到 courseDisciplines 中 - 当取消选择一个复选框时,从 courseDsiciplines 中删除该学科。

我的 JSF 2.0 代码如下:

<p:selectManyCheckbox id="disciplines" value="#{courseMBean.allDisciplines}" layout="grid" columns="2">                                          
<f:selectItems value="#{courseMBean.courseDisciplines}" />
</p:selectManyCheckbox>

这实际上显示了没有任何选定复选框的所有学科,这是正确的。但是,当我选择一些复选框并提交表单时,我尝试打印 courseDisciplines 中的元素,但这不会在控制台中显示任何内容。

我做错了什么?

最佳答案

when I select some checkboxes and submit the form I try to print the elements inside courseDisciplines

作为courseDisciplines实际上代表可用项目而不是选定项目,看来您误解了UISelectMany的一些基本概念和UISelectItem(s)组件。

<f:selectItem(s)> (来自UISelectItem(s)系列)代表可用项目。它正是 UI 中显示的那些项目,最终用户必须从中进行选择。

value <p:selectManyCheckbox> 的属性(来自 UISelectMany 系列,如 <h:selectManyCheckbox><h:selectManyMenu> )代表(预)选择项目。如果在第一次显示表单期间该值为 null 或为空,则不会预先选择任何内容。或者,如果这包含一些预先选择的项目,则仅包含 equal() 的可用项目。将被预选。

当最终用户更改 UI 中的选择并提交表单时,所有选定的项目最终都会出现在 value 中。 UISelectMany 的属性成分。 UISelectItem(s)保持不变。

这是一个基本的启动示例:

<p:selectManyCheckbox value="#{bean.selectedItems}">
<f:selectItems value="#{bean.availableItems}" />
</p:selectManyCheckbox>
<p:commandButton value="Submit" action="#{bean.submit}" />
<p:messages autoUpdate="true" />
private List<String> selectedItems; // +getter +setter
private List<String> availableItems; // +getter (no setter necessary!)

@PostConstruct
public void init() {
availableItems = new ArrayList<String>();
availableItems.add("one");
availableItems.add("two");
availableItems.add("three");
}

public void submit() {
System.out.println("Selected items: " + selectedItems);
}

(所有其他 <p:selectManyXxx><h:selectManyXxx> 组件的工作原理完全相同)

当像 Discipline 这样的复杂 Javabean 对象时出现在图片中,那么您需要确保有一个 Converter为此,JSF 可以在它和 String 之间正确转换。用于生成的 HTML 输出和 HTTP 请求参数(即 HTML 和 HTTP 不能传递或保存 Java 对象,只能传递 Java 中由 String 表示的字符序列)。

这可能是您的根本问题。您说提交时没有任何内容打印到控制台。但整个情况也可能是这样的 submit()方法实际上从未被调用。你在这一点上还不够明确。如果整个操作方法确实从未被调用(即调试断点没有到达那里,或者另一个System.out.println()打印静态字符串从未在控制台中显示),那么您实际上很可能出现转换错误。如果您使用过<h|p:message(s)>如果方法正确,或者已经关注了有关排队但未显示的面孔消息的服务器日志,那么您应该已经注意到了。

在这种情况下,您需要实现 Converter它在 Discipline 之间转换和String .

@FacesConverter(forClass=Discipline.class)
public class DisciplineConverter implements Converter {

@Override
public Object getAsObject(FacesContext context, UIComponent component, String submittedValue) {
// Write code here to convert from String to Discipline.
}

@Override
public String getAsString(FacesContext context, UIComponent component, Object modelValue) {
// Write code here to convert from Discipline to String.
}

}

数据库 ID 通常被用作 String表示。另请参阅有关相关问题的答案的“复杂对象作为所选项目”部分:How to populate options of h:selectOneMenu from database?

关于jsf - 如何将 SelectManyCheckbox 与两个 ArrayList 一起使用? - Primefaces,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19883771/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com