Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 JSF2 和 primefaces。
我正在使用 primefaces (p:dataTable) 做一个动态数据表。在托管 bean 中,有一个链接到该数据表的列表。此外,还有一个操作按钮,可以自动将新元素添加到表格中。
但是,当我按下按钮时,即使我将元素添加到列表中,也不会发生任何变化。显示在数据表中。调试我发现该List<String>字段正在重新初始化,所以它总是有 1 个元素。
List<String>
有人现在我缺少什么吗?