我有两个模型,第一个是cartItem模型,该模型具有HashMap ,ProductOption是第二个模型。

第一型号:

public class CartItem extends BaseObservable implements Serializable {
  ...
HashMap<String, ProductOption> options;
  ...
@Ignore
public HashMap<String, ProductOption> getOptions() {
    return options;
}

@Ignore
public void setOptions(HashMap<String, ProductOption> options) {
    this.options = options;
}

}


第二种模式:

public class ProductOption implements Parcelable {
    String optionId;
    String optionKey;
    String optionValue;}


当我尝试将购物车项目列表设置为recyclerview适配器时,所有的cartitem模型项目均会复制,但选项会复制为null

mViewModel.getCartItems().observe(this,cartItems -> {
        if (FirebaseAuth.getInstance().getCurrentUser() == null) return;
        if (cartItems ==null ) return;


        cartItemList = cartItems;
        cartAdapter.setCartItemList(cartItems);


    });


谢谢你的帮助。

最佳答案

我发现使options为null的原因是我通过迭代器循环了options变量并使用它。remove()这种在cartItemList上循环循环remove选项的方式

 if (cartItemList.get(i).getOptions() != null){
            HashMap<String, ProductOption> optionHashMap = cartItemList.get(i).getOptions();
            Iterator it = optionHashMap.entrySet().iterator();
            double optionPrice = 0;
            while (it.hasNext()){
                Map.Entry pair = (Map.Entry) it.next();
                optionPrice += Double.valueOf(((ProductOption)pair.getValue()).getOptionValue());
                it.remove();
            }

            price = price + optionPrice;

        }

10-08 02:02