gpt4 book ai didi

django - 向 Django 表单选择小部件添加其他选项

转载 作者:行者123 更新时间:2023-12-03 12:39:28 25 4
gpt4 key购买 nike

我有一个用于构造查询集过滤器的表单。该表单从数据库中提取项目状态选项。但是,我想添加其他选项,例如“所有实时促销”......所以选择框看起来像:

  • 所有促销事件 *
  • 所有现场促销事件 *
  • 草稿
  • 已提交
  • 接受
  • 举报
  • 已检查
  • 所有已完成的促销事件 *
  • 关闭
  • 已取消

  • 这里的“*”是我要添加的,其他的来自数据库。

    这可能吗?
    class PromotionListFilterForm(forms.Form):
    promotion_type = forms.ModelChoiceField(label="Promotion Type", queryset=models.PromotionType.objects.all(), widget=forms.Select(attrs={'class':'selector'}))
    status = forms.ModelChoiceField(label="Status", queryset=models.WorkflowStatus.objects.all(), widget=forms.Select(attrs={'class':'selector'}))
    ...
    retailer = forms.CharField(label="Retailer",widget=forms.TextInput(attrs={'class':'textbox'}))

    最佳答案

    您将无法为此使用 ModelChoiceField。您需要恢复到标准的 ChoiceField,并在表单的 __init__ 中手动创建选项列表。方法。就像是:

    class PromotionListFilterForm(forms.Form):
    promotion_type = forms.ChoiceField(label="Promotion Type", choices=(),
    widget=forms.Select(attrs={'class':'selector'}))
    ....

    EXTRA_CHOICES = [
    ('AP', 'All Promotions'),
    ('LP', 'Live Promotions'),
    ('CP', 'Completed Promotions'),
    ]

    def __init__(self, *args, **kwargs):
    super(PromotionListFilterForm, self).__init__(*args, **kwargs)
    choices = [(pt.id, unicode(pt)) for pt in PromotionType.objects.all()]
    choices.extend(EXTRA_CHOICES)
    self.fields['promotion_type'].choices = choices

    您还需要在表单的 clean() 中做一些巧妙的事情。方法来捕捉这些额外的选项并适本地处理它们。

    关于django - 向 Django 表单选择小部件添加其他选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3700445/

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