为了管理购物车,我创建了一个 HashMap,并使用此方法将其转换为列表以显示为 PrimeFaces 数据表:
public List<Map.Entry<Livre, Integer>> getPanier() {
Set<Map.Entry<Livre, Integer>> panierSet = panier.entrySet();
return new ArrayList<Map.Entry<Livre, Integer>>(panierSet);
}
显示列表后,我希望使用 inputText 直接在数据表中更新数量。
但我不知道这是否可能?或者如果我需要在 ArrayList 中转换 HashMap 来做这个特征。