我正在使用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()
所以任何人对此都有任何想法,请帮助。最后,您的帮助将不胜感激。
答案 0 :(得分:1)
通过属性获取值时,必须在get_value_by_attribute方法中传递属性的实例。 例如
brand = child_product.attr.get_all_attributes().first()
child_product.attr.get_value_by_attribute(attribute=brand)
您还可以通过使用its name方法的结果上的get_values来调用get
来按属性检索值。 例如
child_product.attr.get_values().get(attribute__name='Brand')
答案 1 :(得分:0)
在我看来,属性对象需要作为get_value_by_attribute()的参数传递。如果“品牌”是您要用来检索特定属性的子弹,请使用get_attribute_by_slug()获取属性对象,然后将其传递给get_value_by_attribute();
答案 2 :(得分:0)
最后,我找到了一个非常简单的解决方案,如下所示
(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,希望对您也有帮助。