これが私の問題です。選択した製品の属性値を含む製品バリエーションを作成しようとしています。私はそれを行うために 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")
この問題を解決する方法があれば教えてください。
ありがとう