gpt4 book ai didi

python - 子类化 django choicefield 不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 16:40:39 25 4
gpt4 key购买 nike

我正在尝试对 ChoiceField 进行子类化,以便我可以以多种形式使用它(DRY)。例如:

class testField(forms.ChoiceField):
choices = (('a', 'b'), ('c', 'd'))
label = "test"

class testForm(forms.Form):
test = testField()

其他类型的字段作为子类工作(例如 CharField),但是在渲染 ChoiceField 的子类时,我收到一个模糊的错误:

AttributeError at /..url.../
'testField' object has no attribute '_choices'

在子类中指定choices_choices不会报错,但渲染中也不会显示内容。

最佳答案

不要弄乱 Field 的类属性,choicesChoiceField 实例的属性。按照 docs 中的建议,重写 __init__(...) :

class TestField(ChoiceField):
def __init__(self, *args, **kwargs):
kwargs['choices'] = ((1, 'a'), (2, 'b'))
kwargs['label'] = "test"
super(TestField, self).__init__(*args, **kwargs)

class TestForm(Form):
test = TestField()

f = TestForm()

f.fields['test'].choices
> [(1, 'a'), (2, 'b')]

f.fields['test'].label
> 'test'

关于python - 子类化 django choicefield 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36821980/

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