这是我的问题。我正在尝试创建包含所选产品属性值的产品变体。我正在尝试使用 JSONField 来做到这一点,但我想知道如何在表单中动态显示字段以创建新的产品变体。
这是我的 models.py 文件:
class Product(models.Model) :
name = models.CharField(max_length=120)
price = models.DecimalField(max_digits=10, decimal_places=2)
image = models.ImageField(upload_to='products')
allow_variants = models.BooleanField(default=True)
product_attributes = models.ManyToManyField("attribute")
def __str__(self) :
return self.name
class Meta :
ordering = ("name",)
class Attribute(models.Model) :
name = models.CharField(max_length=120)
def __str__(self) :
return self.name
def get_all_attr_variants(self) :
variants = AttributeVariant.objects.filter(attribute__name=self.name)
return variants
class AttributeVariant(models.Model) :
name = models.CharField(max_length=120)
attribute = models.ForeignKey(Attribute, on_delete=models.CASCADE)
def __str__(self) :
return self.name
class Meta :
ordering = ('name',)
class ProductVariant(models.Model) :
product = models.ForeignKey(Product, on_delete=models.CASCADE)
name = models.CharField(max_length=120)
price = models.DecimalField(max_digits=10, decimal_places=2)
attributes = JSONField()
def __str__(self) :
return self.product.name + ": " + self.name
class Meta :
ordering = ("product.name", "name")
如果您对我如何解决此问题有任何想法,请帮助我!
谢谢