值太多,无法解压缩(应为2)Djang

2024-05-13 10:38:46 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在创建一个包含ChoiceField的表单,我通过视图为其建立选择值。在

根据Django文档ChoiceFields Choices,选择值必须是:

Either an iterable (e.g., a list or tuple) of 2-tuples to use as choices for this field, or a callable that returns such an iterable. This argument accepts the same formats as the choices argument to a model field.

加载视图时,我没有遇到任何问题。但是当我在验证视图中的表单之后试图获得ChoiceField的值时,我得到了一个错误Too many values to unpack (expected 2)。在

我不知道我是否错误地在ChoiceField中添加了选择值。虽然我想如果是这样,视图也不会加载。我做错什么了?在

在表单.py在

class FormAffiliateReport(forms.Form):

...

referrals = forms.ChoiceField(choices=(), label='Choice Referral', widget=forms.Select(attrs={'class': 'form-control',}))

def __init__(self, referrals, *args, **kwargs):
    super(FormAffiliateReport, self).__init__(*args, **kwargs)
    self.fields['referrals'].choices = referrals

在视图.py在

^{pr2}$

回溯

File "C:\Users\pc\Environments\company\lib\site-packages\django\core\handlers\exception.py", line 41, in inner
response = get_response(request)
File "C:\Users\pc\Environments\company\lib\site-packages\django\core\handlers\base.py", line 187, in _get_response
response = self.process_exception_by_middleware(e, request)
File "C:\Users\pc\Environments\company\lib\site-packages\django\core\handlers\base.py", line 185, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "C:\Users\pc\Projects\company\blog\views.py", line 224, in affiliate_report
return render(request, 'blog/affiliate_report.html', {"affiliate_code": affiliate_code, "form": form})
File "C:\Users\pc\Environments\company\lib\site-packages\django\shortcuts.py", line 30, in render
content = loader.render_to_string(template_name, context, request, using=using)
File "C:\Users\pc\Environments\company\lib\site-packages\django\template\loader.py", line 68, in render_to_string
return template.render(context, request)
File "C:\Users\pc\Environments\company\lib\site-packages\django\template\backends\django.py", line 66, in render
return self.template.render(context)
File "C:\Users\pc\Environments\company\lib\site-packages\django\template\base.py", line 207, in render
return self._render(context)
File "C:\Users\pc\Environments\company\lib\site-packages\django\template\base.py", line 199, in _render
return self.nodelist.render(context)
File "C:\Users\pc\Environments\company\lib\site-packages\django\template\base.py", line 990, in render
bit = node.render_annotated(context)
File "C:\Users\pc\Environments\company\lib\site-packages\django\template\base.py", line 957, in render_annotated
return self.render(context)
File "C:\Users\pc\Environments\company\lib\site-packages\django\template\defaulttags.py", line 216, in render
nodelist.append(node.render_annotated(context))
File "C:\Users\pc\Environments\company\lib\site-packages\django\template\base.py", line 957, in render_annotated
return self.render(context)
File "C:\Users\pc\Environments\company\lib\site-packages\django\template\base.py", line 1046, in render
return render_value_in_context(output, context)
File "C:\Users\pc\Environments\company\lib\site-packages\django\template\base.py", line 1024, in render_value_in_context
value = force_text(value)
File "C:\Users\pc\Environments\company\lib\site-packages\django\utils\encoding.py", line 76, in force_text
s = six.text_type(s)
File "C:\Users\pc\Environments\company\lib\site-packages\django\utils\html.py", line 385, in <lambda>
klass.__str__ = lambda self: mark_safe(klass_str(self))
File "C:\Users\pc\Environments\company\lib\site-packages\django\forms\boundfield.py", line 41, in __str__
return self.as_widget()
File "C:\Users\pc\Environments\company\lib\site-packages\django\forms\boundfield.py", line 94, in as_widget
attrs = self.build_widget_attrs(attrs, widget)
File "C:\Users\pc\Environments\company\lib\site-packages\django\forms\boundfield.py", line 250, in build_widget_attrs
if widget.use_required_attribute(self.initial) and self.field.required and self.form.use_required_attribute:
File "C:\Users\pc\Environments\company\lib\site-packages\django\forms\widgets.py", line 690, in use_required_attribute
return use_required_attribute and first_choice is not None and self._choice_has_empty_value(first_choice)
File "C:\Users\pc\Environments\company\lib\site-packages\django\forms\widgets.py", line 673, in _choice_has_empty_value
value, _ = choice
ValueError: too many values to unpack (expected 2)

Tags: djangoinpyselflibpackageslinesite
1条回答
网友
1楼 · 发布于 2024-05-13 10:38:46

为了使我已经在评论中提出的内容正式化:

操作中的问题是,Form的构造函数的referrals参数在窗体实例化为form = FormAffiliateReport(request.POST)时,占用了POST的全部数据。我们需要的是使用关键字参数来表示动态变化的选择。在

因此,在视图中,请这样做:

choices = ... # some computation, specific to the OP's needs
form = FormAffiliateReport(request.POST, choices=choices)

Form类中:

^{pr2}$

相关问题 更多 >