0

我有这样的表格:

account_type_choices = ('1234', '1234567')
choice_field = forms.ChoiceField(widget=forms.RadioSelect, choices=account_type_choices)

# In templates shown like this
[li] [radio_button] 2
[li] [radio_button] 2

怎么了?

4

1 回答 1

0

choices需要是一系列 2 元组。像这样:

ACCOUNT_TYPE_CHOICES = (('1234', '1234'), ('1234567', '1234567'))

(另请注意,习惯上将名称全部大写,因为它是一个常数。)

于 2013-09-24T06:45:20.553 回答