Django 양식 ChoiceField에서 선택 레이블을 얻는 방법은 무엇입니까? ChoiceField가 있습니다. 이제 필요할 때 "라벨"을 어떻게 얻습니까? class ContactForm(forms.Form): reason = forms.ChoiceField(choices=[("feature", "A feature"), ("order", "An order")], widget=forms.RadioSelect) form.cleaned_data["reason"] 나에게 "기능"또는 "주문"정도만 줄 것입니다. 도움이 될 수 있습니다. reason = form.cleaned_data['reason'] reason = dict(form.fields['reason'].choices)[reason] Model...