我目前正在尝试创建一个动态产品模型,允许管理员创建添加自己的"选项集"到产品。
例如,产品A的瓣阀宽度为400mm,500mm和600mm。
为方便起见,我创建了3个模型。
models.py
# A container that can hold multiple ProductOptions
class ProductOptionSet(models.Model):
title = models.CharField(max_length=20)
# A string containing the for the various options available.
class ProductOption(models.Model):
value = models.CharField(max_length=255)
option_set = models.ForeignKey(ProductOptionSet)
# The actual product type
class HeadwallProduct(Product):
dimension_a = models.IntegerField(null=True, blank=True)
dimension_b = models.IntegerField(null=True, blank=True)
# (...more variables...)
flap_valve = models.CharField(blank=True, max_length=255, null=True)
......和表格......
forms.py
class HeadwallVariationForm(forms.ModelForm):
flap_valve = forms.MultipleChoiceField(required=False, widget=forms.SelectMultiple)
def __init__(self, *args, **kwargs):
super(HeadwallVariationForm, self).__init__(*args, **kwargs)
self.fields['flap_valve'].choices = [(t.id, t.value) for t in ProductOption.objects.filter(option_set=1)]
def save(self, commit=True):
instance = super(HeadwallVariationForm, self).save(commit=commit)
return instance
class Meta:
fields = '__all__'
model = HeadwallProduct
这在初始创建产品期间可以正常工作。 MultipleChoiceForm中的列表中填充了ProductOptionSet中的条目,可以保存表单。
然而,当管理员添加一个700mm的瓣阀作为产品A的ProductOptionSet的选项时,事情就会崩溃。任何新选项都会显示在现有产品的管理区域中 - 甚至会在保存产品时保留到数据库中 - 但它们不会在管理区域中显示为已选中。
如果创建了产品B,则新选项可以按预期工作,但您无法向现有产品添加新选项。
为什么会发生这种情况,我该怎么做才能解决这个问题?谢谢。
答案 0 :(得分:1)
呃...大约4个小时后我才知道......
更改:
class ProductOption(models.Model):
value = models.CharField(max_length=20)
option_set = models.ForeignKey(ProductOptionSet)
到
class ProductOption(models.Model):
option_value = models.CharField(max_length=20)
option_set = models.ForeignKey(ProductOptionSet)
解决了我的问题。