예외 int () argument must be a string or a number, not'ShopCar'
3759 단어 django
Traceback:
File "E:\Python27\lib\site-packages\django\core\handlers\base.py" in get_response
132. response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "E:\learngit\store\auto_sale\views.py" in add_to_shop_car
82. size_name=size.name, color_name=size.name)
File "E:\Python27\lib\site-packages\django\db\models\manager.py" in manager_method
127. return getattr(self.get_queryset(), name)(*args, **kwargs)
File "E:\Python27\lib\site-packages\django\db\models\query.py" in get_or_create
405. return self.get(**lookup), False
File "E:\Python27\lib\site-packages\django\db\models\query.py" in get
325. clone = self.filter(*args, **kwargs)
File "E:\Python27\lib\site-packages\django\db\models\query.py" in filter
679. return self._filter_or_exclude(False, *args, **kwargs)
File "E:\Python27\lib\site-packages\django\db\models\query.py" in _filter_or_exclude
697. clone.query.add_q(Q(*args, **kwargs))
File "E:\Python27\lib\site-packages\django\db\models\sql\query.py" in add_q
1309. clause, require_inner = self._add_q(where_part, self.used_aliases)
File "E:\Python27\lib\site-packages\django\db\models\sql\query.py" in _add_q
1337. allow_joins=allow_joins, split_subq=split_subq,
File "E:\Python27\lib\site-packages\django\db\models\sql\query.py" in build_filter
1199. lookups, value)
File "E:\Python27\lib\site-packages\django\db\models\fields\related.py" in get_lookup_constraint
1756. lookup_class(target.get_col(alias, source), val), AND)
File "E:\Python27\lib\site-packages\django\db\models\lookups.py" in __init__
101. self.rhs = self.get_prep_lookup()
File "E:\Python27\lib\site-packages\django\db\models\lookups.py" in get_prep_lookup
139. return self.lhs.output_field.get_prep_lookup(self.lookup_name, self.rhs)
File "E:\Python27\lib\site-packages\django\db\models\fields\__init__.py" in get_prep_lookup
727. return self.get_prep_value(value)
File "E:\Python27\lib\site-packages\django\db\models\fields\__init__.py" in get_prep_value
985. return int(value)
Exception Type: TypeError at /add_to_shop_car/
Exception Value: int() argument must be a string or a number, not 'ShopCar'
Request information:
GET: No GET data
코드:
#
shop_car = ShopCar.objects.get_or_create(user=user)
shop_car_item = ShopCarItem.objects.get_or_create(shop_car=shop_car, product=product, size=size, color=color,
size_name=size.name, color_name=color.name)
shop_car_item.count = shop_car_item.count + count
shop_car_item.save()
해결 방법:
#
shop_car = ShopCar.objects.get_or_create(user=user)[0]
shop_car_item = ShopCarItem.objects.get_or_create(shop_car=shop_car, product=product, size=size, color=color,
size_name=size.name, color_name=color.name)[0]
shop_car_item.count = shop_car_item.count + count
shop_car_item.save()
get_or_create tuple
ShopCarItem.objects.get_or_create shop_car tuple , id , ShopCar , int
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Django의 질문 및 답변 웹사이트환영 친구, 이것은 우리의 새로운 블로그입니다. 이 블로그에서는 , 과 같은 Question-n-Answer 웹사이트를 만들고 있습니다. 이 웹사이트는 회원가입 및 로그인이 가능합니다. 로그인 후 사용자는 사용자의 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.