我使用的MultipleHiddenInput字段用于存储基于选择器的其他字段的一些选项似乎不起作用。
请考虑我的代码:
class LogSearch(forms.Form):
platform = forms.ChoiceField(required=True, choices=platforms, initial='v',
help_text='The platform to search on')
log_type = forms.MultipleChoiceField(required=True, choices=())
keyword = forms.CharField(required=True)
other_log_types = forms.MultipleChoiceField(required=False, widget=forms.MultipleHiddenInput, choices=[(1, '3'), (2, 'b')])
如此表单代码所示,我希望other_log_types
呈现为隐藏。但它在我的HTML中根本不会出现。
我正在模板上正确呈现它,因为所有其他组件都正确显示。我不确定我是否正确使用小部件。
由于