我正在尝试更新购物车上的数量,但实际上并未更新数量。我的购物车是基于型号的,但我认为问题在于:
product_obj['quantity'] += 1
我收到错误: “产品”对象不可订阅
我的views.py
def cart_update(request):
product_id = request.POST.get('product_id')
if product_id is not None:
try:
product_obj = Product.objects.get(id=product_id)
except Product.DoesNotExist:
print("Show message to user, product is gone?")
return redirect("cart:home")
cart_obj, new_obj = Cart.objects.new_or_get(request)
if product_obj in cart_obj.products.all():
cart_obj.products.add(product_obj)
product_obj['quantity'] += 1
return redirect("cart:home")
答案 0 :(得分:2)
你不会使用(假设product_obj不是真正的列表或字典)......
product_obj.quantity += 1