在 django 中过滤模型表单中的字段值

发布于 2024-11-29 08:52:19 字数 229 浏览 0 评论 0原文

我正在 django 中使用 ModelForm 在 django 中创建我的表单。所以我有一个引用位置模型的约会模型。因为我使用的是 ModelForm,所以 Location 字段的选择框由 django 本身自动填充。我想要的是控制使用 ModelForm 根据状态等属性创建的表单中填充的位置类型。

我不想手动覆盖模型表单中的位置字段本身。我希望这些元素由 django 本身处理。我只是想加入一个过滤器。有什么建议吗?

I am using the ModelForm in django to create my form in django. So I have a appointment model which references the Location model. Because I am using ModelForm, the select box for the Location field is automatically populated by django itself. What I want is to control the type of location that is populated in the form creating using the ModelForm based upon attributes like say status.

I don't want to manually override the location field itself in the ModelForm. I want the elements to be handled by django itself. I just want to hook in a filter. Any suggestions?

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

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

发布评论

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

评论(1

甜`诱少女 2024-12-06 08:52:19

如果您的实例已存在,并且不是内联表单,则可以在模型表单中执行以下操作:

def __init__(self,*args,**kwargs):
    super (AppointmentForm,self ).__init__(*args,**kwargs) # populates the post
    #filter appointments based on status
    if self.instance.pk:
        # the location filter below is a guess. i don't know your models.
        locations = Location.objects.filter(status_id=self.instance.status_id)
        self.fields['location'].queryset = locations

另一种方法是使用回调,这会变得更加棘手......

If you instance is existing, and not in an inline form, you can do the following in your model form:

def __init__(self,*args,**kwargs):
    super (AppointmentForm,self ).__init__(*args,**kwargs) # populates the post
    #filter appointments based on status
    if self.instance.pk:
        # the location filter below is a guess. i don't know your models.
        locations = Location.objects.filter(status_id=self.instance.status_id)
        self.fields['location'].queryset = locations

Another approach is using Callbacks which gets trickier...

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