*** TypeError: get_value_by_attribute() missing 1 required positional argument: 'attribute'
*** TypeError: get_value_by_attribute() missing 1 required positional argument: 'attribute'
我正在使用 Django oscar 并尝试使用 product.attr.get_value_by_attribute() 获取产品属性键和值。我遇到了上述错误,我尝试传递属性,但它仍然给我一个错误。
我的测试调试器代码如下:
(Pdb) child_product
<Product: Good Day 100 gm>
(Pdb) child_product.__dict__
{'_state': <django.db.models.base.ModelState object at 0x7fa088e1c438>, 'id': 13, 'structure': 'child', 'upc': '', 'parent_id': 12, 'title': 'Good Day 100 gm', 'slug': 'good-day-100-gm', 'description': '', 'product_class_id': None, 'rating': None, 'date_created': datetime.datetime(2019, 6, 22, 15, 30, 24, 273252, tzinfo=<UTC>), 'date_updated': datetime.datetime(2019, 6, 22, 15, 30, 24, 273270, tzinfo=<UTC>), 'is_discountable': True, 'attr': <oscar.apps.catalogue.product_attributes.ProductAttributesContainer object at 0x7fa088e1c470>}
(Pdb) child_product.attr
<oscar.apps.catalogue.product_attributes.ProductAttributesContainer object at 0x7fa088e1c470>
(Pdb) child_product.attr.__dict__
{'product': <Product: Good Day 100 gm>, 'initialised': False}
(Pdb) child_product.attr.__dict__
{'product': <Product: Good Day 100 gm>, 'initialised': False}
(Pdb) child_product.attr.get_values()
<QuerySet [<ProductAttributeValue: Brand: Britania>, <ProductAttributeValue: Variant Name: 100 gm x 12>]>
(Pdb) child_product.attr.get_all_attributes()
<QuerySet [<ProductAttribute: Brand>, <ProductAttribute: GST Rate>, <ProductAttribute: HSN Code>, <ProductAttribute: Liquid Content>, <ProductAttribute: Parent Company>, <ProductAttribute: Promo SKU>, <ProductAttribute: Selling Lot Size>, <ProductAttribute: Sub Brand>, <ProductAttribute: Tags>, <ProductAttribute: Variant Name>, <ProductAttribute: Weight>, <ProductAttribute: Weight Unit>]>
(Pdb) child_product.attr.get_value_by_attribute()
*** TypeError: get_value_by_attribute() missing 1 required positional argument: 'attribute'
(Pdb) child_product.attr.get_value_by_attribute(attribute="Brand")
*** ValueError: invalid literal for int() with base 10: 'Brand'
所以在这里我能够获取值和所有属性,但我不知道如何通过我需要的属性获取值。
child_product.attr.get_value_by_attribute()
所以任何人对此有任何想法然后请帮助。肯定会感谢您的帮助。
在我看来,属性对象需要作为 get_value_by_attribute() 的参数传入。如果 'Brand' 是您试图用来检索特定属性的 slug,请使用 get_attribute_by_slug() 获取属性对象,然后将其传递给 get_value_by_attribute();
通过属性获取值时,必须在 get_value_by_attribute 方法中传递一个属性实例。 例如
brand = child_product.attr.get_all_attributes().first()
child_product.attr.get_value_by_attribute(attribute=brand)
您还可以使用 its name invoking get
on the result of get_values 方法按属性检索值。 例如
child_product.attr.get_values().get(attribute__name='Brand')
最后,我找到了一个非常简单的解决方案,如下
(Pdb) child_product.attribute_summary
'Brand: Nestle, Variant Name: Rs 5 x 126'
(Pdb) child_product.attribute_summary.split(',')
['Brand: Nestle', ' Variant Name: Rs 5 x 126']
这里我得到了我想要的属性名称和值,如果您使用的是 Django oscar,我希望这对您也有帮助。
我正在使用 Django oscar 并尝试使用 product.attr.get_value_by_attribute() 获取产品属性键和值。我遇到了上述错误,我尝试传递属性,但它仍然给我一个错误。
我的测试调试器代码如下:
(Pdb) child_product
<Product: Good Day 100 gm>
(Pdb) child_product.__dict__
{'_state': <django.db.models.base.ModelState object at 0x7fa088e1c438>, 'id': 13, 'structure': 'child', 'upc': '', 'parent_id': 12, 'title': 'Good Day 100 gm', 'slug': 'good-day-100-gm', 'description': '', 'product_class_id': None, 'rating': None, 'date_created': datetime.datetime(2019, 6, 22, 15, 30, 24, 273252, tzinfo=<UTC>), 'date_updated': datetime.datetime(2019, 6, 22, 15, 30, 24, 273270, tzinfo=<UTC>), 'is_discountable': True, 'attr': <oscar.apps.catalogue.product_attributes.ProductAttributesContainer object at 0x7fa088e1c470>}
(Pdb) child_product.attr
<oscar.apps.catalogue.product_attributes.ProductAttributesContainer object at 0x7fa088e1c470>
(Pdb) child_product.attr.__dict__
{'product': <Product: Good Day 100 gm>, 'initialised': False}
(Pdb) child_product.attr.__dict__
{'product': <Product: Good Day 100 gm>, 'initialised': False}
(Pdb) child_product.attr.get_values()
<QuerySet [<ProductAttributeValue: Brand: Britania>, <ProductAttributeValue: Variant Name: 100 gm x 12>]>
(Pdb) child_product.attr.get_all_attributes()
<QuerySet [<ProductAttribute: Brand>, <ProductAttribute: GST Rate>, <ProductAttribute: HSN Code>, <ProductAttribute: Liquid Content>, <ProductAttribute: Parent Company>, <ProductAttribute: Promo SKU>, <ProductAttribute: Selling Lot Size>, <ProductAttribute: Sub Brand>, <ProductAttribute: Tags>, <ProductAttribute: Variant Name>, <ProductAttribute: Weight>, <ProductAttribute: Weight Unit>]>
(Pdb) child_product.attr.get_value_by_attribute()
*** TypeError: get_value_by_attribute() missing 1 required positional argument: 'attribute'
(Pdb) child_product.attr.get_value_by_attribute(attribute="Brand")
*** ValueError: invalid literal for int() with base 10: 'Brand'
所以在这里我能够获取值和所有属性,但我不知道如何通过我需要的属性获取值。
child_product.attr.get_value_by_attribute()
所以任何人对此有任何想法然后请帮助。肯定会感谢您的帮助。
在我看来,属性对象需要作为 get_value_by_attribute() 的参数传入。如果 'Brand' 是您试图用来检索特定属性的 slug,请使用 get_attribute_by_slug() 获取属性对象,然后将其传递给 get_value_by_attribute();
通过属性获取值时,必须在 get_value_by_attribute 方法中传递一个属性实例。 例如
brand = child_product.attr.get_all_attributes().first()
child_product.attr.get_value_by_attribute(attribute=brand)
您还可以使用 its name invoking get
on the result of get_values 方法按属性检索值。 例如
child_product.attr.get_values().get(attribute__name='Brand')
最后,我找到了一个非常简单的解决方案,如下
(Pdb) child_product.attribute_summary
'Brand: Nestle, Variant Name: Rs 5 x 126'
(Pdb) child_product.attribute_summary.split(',')
['Brand: Nestle', ' Variant Name: Rs 5 x 126']
这里我得到了我想要的属性名称和值,如果您使用的是 Django oscar,我希望这对您也有帮助。