本文整理汇总了Python中cart.cart.Cart.count方法的典型用法代码示例。如果您正苦于以下问题:Python Cart.count方法的具体用法?Python Cart.count怎么用?Python Cart.count使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cart.cart.Cart
的用法示例。
在下文中一共展示了Cart.count方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get
# 需要导入模块: from cart.cart import Cart [as 别名]
# 或者: from cart.cart.Cart import count [as 别名]
def get(self, request, **kwargs):
if request.is_ajax:
cart = Cart(request)
try:
product = Product.objects.get(id=kwargs['id'])
quantity = 1
cart.add(product, product.price, quantity)
return HttpResponse(json.dumps({'count': cart.count()}))
except:
return HttpResponse(json.dumps({'count': cart.count()}))
示例2: cart_count
# 需要导入模块: from cart.cart import Cart [as 别名]
# 或者: from cart.cart.Cart import count [as 别名]
def cart_count(request):
if not request.user.is_anonymous():
a = request.user.post_set.all().count()
return {'cart_count': a}
else:
c = Cart(request)
return {'cart_count': c.count()}
示例3: assert_total_item_count
# 需要导入模块: from cart.cart import Cart [as 别名]
# 或者: from cart.cart.Cart import count [as 别名]
def assert_total_item_count(self, total_count, response):
cart = Cart(self.client)
count = cart.count()
self.test_case.assertEqual(total_count, count)