django 多条件查询某个数据是否存在

cart2 = Cart.objects.filter(item_id=itemid, user_id=userid).first()
if cart2:
  //数据存在

你可能感兴趣的:(django 多条件查询某个数据是否存在)