在 Django 中,我可以排除 ModelForm 子类中的字段吗?

发布于 2024-12-07 07:44:19 字数 546 浏览 0 评论 0原文

我有一个“通用”InternForm,它继承自 ModelForm 并定义通用消息、小部件等。

我为应用程序表单定义了一个名为 ApplyInternForm 的子类每个人都可以访问它,我想隐藏一些“高级”字段。

如何覆盖表单子类中的排除设置?

class InternForm(ModelForm):

    # ...

    class Meta:
        model = Intern
        exclude = ()

class ApplyInternForm(InternForm):
    def __init__(self, *args, **kwargs):
        super(ApplyInternForm, self).__init__(*args, **kwargs)
        self.Meta.exclude = ('is_active',)  # this doesn't work

I have a “generic” InternForm that inherits from ModelForm and defines common messages, widgets, etc.

I defined a subclass called ApplyInternForm for application form that is accessible to everyone and I want to hide some of the “advanced” fields.

How can I override exclude setting in the form's subclass?

class InternForm(ModelForm):

    # ...

    class Meta:
        model = Intern
        exclude = ()

class ApplyInternForm(InternForm):
    def __init__(self, *args, **kwargs):
        super(ApplyInternForm, self).__init__(*args, **kwargs)
        self.Meta.exclude = ('is_active',)  # this doesn't work

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

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

发布评论

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

评论(3

笑忘罢 2024-12-14 07:44:19

在子类中定义一个 Meta 类对我有用:

class InternForm(ModelForm):

    # ...

    class Meta:
        model = Intern

class ApplyInternForm(InternForm):

    class Meta:
        model = Intern
        exclude = ('is_active',)

Defining a Meta class in the subclass worked for me:

class InternForm(ModelForm):

    # ...

    class Meta:
        model = Intern

class ApplyInternForm(InternForm):

    class Meta:
        model = Intern
        exclude = ('is_active',)
美人迟暮 2024-12-14 07:44:19

不是这样的,不。当您对表单进行子类化时,您想要排除的字段已经存在。不过,您可以在 __init__() 中调用 super() 后从 self.fields 中删除它们。

Not in this way, no. When you subclass a form the fields you want to exclude are already there. You can however remove them from self.fields after calling super() in your __init__().

记忆里有你的影子 2024-12-14 07:44:19

您可以将小部件更改为隐藏:

class ApplyInternForm(InternForm):
    class Meta:
        widgets = {
            'is_active': forms.HiddenInput(required=False),
        }

You can change widget to hidden:

class ApplyInternForm(InternForm):
    class Meta:
        widgets = {
            'is_active': forms.HiddenInput(required=False),
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文