0
for cart_item in cart_products:
    if **cart_item.**product.id = p.id:
        # update the quantity if found
        cart_item.augment_quantity(quantity)
        product_in_cart = True
if not product_in_cart:  
    # create and save a new cart item
    ci = CartItem()
    ci.product = p
    ci.quantity = quantity
    ci.cart_id = _cart_id(request)
    ci.save()

我刚刚把我的购物车放在一起,这是一个简单的逻辑,它检查以确保该项目尚未在某人的购物车中,以防他们错误地再次尝试添加它。错误出现在粗体部分...a:是预期的,而不是 a. 服务器抛出错误并且 eclipse 正在捕获语法错误。

为什么点语法会破坏 if 语句?如果需要更多上下文,请告诉我,但我猜我只是没有正确理解 if 语句的语法要求。

4

1 回答 1

5

Python 中的比较运算符是==,不是=

于 2013-03-27T16:51:35.360 回答