重写 django 表单的 clean 方法来更改 ModelChoiceField 查询集

发布于 2024-11-04 05:48:47 字数 838 浏览 1 评论 0原文

我有这个模型:

class PetAttribute(models.Model):
    species = models.ForeignKey(PetSpecies, related_name = "pets")
    pet_category = models.ForeignKey(PetCategory, related_name = "pets", blank=True, null=True)
    pet_type = models.ForeignKey(PetType, related_name = "pets", blank=True, null=True)
    additional_fields= models.ManyToManyField( AdditionalField, null= True, blank=True )

现在我想在 select (pet_category, pet_type) 中添加一个附加选项,即

("0","其他")

在这些查询集中。我已经尝试过,但表格给了我一个错误

错误:选择一个有效的选项。该选择不是可用的选择之一。

这里是它的一个解决方案,但我想通过 ModelChoiceField 执行此操作

有什么建议吗?

谢谢 :)

I have this model:

class PetAttribute(models.Model):
    species = models.ForeignKey(PetSpecies, related_name = "pets")
    pet_category = models.ForeignKey(PetCategory, related_name = "pets", blank=True, null=True)
    pet_type = models.ForeignKey(PetType, related_name = "pets", blank=True, null=True)
    additional_fields= models.ManyToManyField( AdditionalField, null= True, blank=True )

Now i want to add an additional option in select (pet_category, pet_type), which is

("0","Other")

in queryset of these. I have tried but form give me an error

Error: Select a valid choice. That choice is not one of the available choices.

here is a one solution of it, but i want to do this by ModelChoiceField

Any suggestion?

Thanks :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

带上头具痛哭 2024-11-11 05:48:47

虽然这是可能的,但您确定这是您想要做的吗?您正在告诉验证模型对象选择的字段接受无效答案。

创建“其他”PetType 和 PetCategory 对象或使用 empty_label 作为“其他”可能比强制 ModelChoiceField 接受任意值更有意义。

然后要查找选择了“其他”的对象,查询“无”,

pattrs_w_other_pet_type = PetAttribute.object.filter(pet_type=None)

While it is possible, are you sure this is what you want to do? You are telling a field that validates choices to the model objects to accept a non-valid answer.

Creating an "other" PetType and PetCategory object or using empty_label as "other" might make more sense than forcing the ModelChoiceField to accept arbitrary values.

Then to find objects with "other" selected, query for None,

pattrs_w_other_pet_type = PetAttribute.object.filter(pet_type=None)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文