gpt4 book ai didi

Django表单通过多对多字段链接2个模型

转载 作者:行者123 更新时间:2023-12-02 04:16:38 25 4
gpt4 key购买 nike

我有两个模型:

 class Actor(models.Model):
name = models.CharField(max_length=30, unique = True)
event = models.ManyToManyField(Event, blank=True, null=True)

class Event(models.Model):
name = models.CharField(max_length=30, unique = True)
long_description = models.TextField(blank=True, null=True)

我想创建一个表单,允许我在添加新条目时识别两个模型之间的链接。这有效:
 class ActorForm(forms.ModelForm):
class Meta:
model = Actor

该表单包括名称和事件,允许我创建一个新的 Actor 并同时将其链接到现有的事件。

另一方面,
 class EventForm(forms.ModelForm):
class Meta:
model = Event

此表格不包括 Actor 协会。所以我只能创建一个新事件。我不能同时将它链接到现有的 Actor。

我试图创建一个内联表单集:
 EventFormSet = forms.models.inlineformset_factory(Event,
Actor,
can_delete = False,
extra = 2,
form = ActorForm)

但我得到一个错误
<'class ctg.dtb.models.Actor'> has no ForeignKey to <'class ctg.dtb.models.Event'>

这不足为奇。 inlineformset 适用于我拥有的另一组模型,但这是一个不同的示例。我想我完全错了。

总体问题:如何创建允许我创建新事件并将其链接到现有 Actor 的表单?

最佳答案

就个人而言,我会首先将 ManyToMany 放在 Event 上,但对于每个人来说...

至于怎么做,你会想写一个自定义的 ModelForm(不是内联表单集),我们称之为 EventForm。它将处理您的所有事件字段,并且还会有 ModelChoiceFieldModelMultipleChoiceField允许选择所涉及的参与者。然后在您的 View 中,您将拆分事件字段和 ForeignKey/M2M 字段的处理。

有道理? alt text http://sonicloft.net/im/52

关于Django表单通过多对多字段链接2个模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2503243/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com