У меня динамически созданная форма сборки с Django.Когда эта форма отправлена, я могу видеть все данные в request.post, что, как говорится, когда я получаю доступ к form.cleaned_data, один из входных данных отсутствует.Это вызывает KeyError, когда я пытаюсь получить к нему доступ.
Нет ошибок, вызванных формой, и форма кажется действительной.Если у кого-то есть другие пути, которые я мог бы посмотреть, я был бы очень признателен.
Вот ошибка:
Internal Server Error: /gluiq/StrategicBrief/
Traceback (most recent call last):
File "/Users/matthew/python3venv/gluiq/lib/python3.7/site-packages/django/core/handlers/exception.py", line 41, in inner
response = get_response(request)
File "/Users/matthew/python3venv/gluiq/lib/python3.7/site-packages/django/core/handlers/base.py", line 187, in _get_response
response = self.process_exception_by_middleware(e, request)
File "/Users/matthew/python3venv/gluiq/lib/python3.7/site-packages/django/core/handlers/base.py", line 185, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/Users/matthew/python3venv/gluiq/lib/python3.7/site-packages/django/views/generic/base.py", line 68, in view
return self.dispatch(request, *args, **kwargs)
File "/Users/matthew/python3venv/gluiq/lib/python3.7/site-packages/braces/views/_access.py", line 102, in dispatch
request, *args, **kwargs)
File "/Users/matthew/python3venv/gluiq/lib/python3.7/site-packages/django/views/generic/base.py", line 88, in dispatch
return handler(request, *args, **kwargs)
File "/Users/matthew/PycharmProjects/GluIQ/DreamIt/views.py", line 494, in post
ThisAwnser = str(form.cleaned_data[str('DropdownList_' + str(a))])
KeyError: 'DropdownList_6'
[09/Apr/2019 12:25:51] "POST /gluiq/StrategicBrief/ HTTP/1.1" 500 97452
Вот представление, хотя я не думаю, что оно поможет:
def post(self, request):
if request.method == 'POST':
files = Files.objects.get(FileName="Strategic Brief")
self.request.session['activeFile'] = files.id
form = OutlineBusinessCaseForm(request.POST, request.FILES, Questions=files.questions.all())
activeproject = request.session['activeProject']
print(form.errors)
if form.is_valid():
current_user = self.request.user
projects = userProject.objects.filter(id=activeproject, UserID=current_user)
file = Files.objects.get(FileName="Strategic Brief")
questions = file.questions.all()
awnseredQuestion = QuestionAwner(UserID=self.request.user, ProjectID=projects[0].ProjectID, FileID=file)
a = 0
while a < len(questions):
awnseredQuestion = QuestionAwner(UserID=self.request.user, ProjectID=projects[0].ProjectID,
FileID=file)
awnser = '{"Title": "' + questions[a].Question['Title'] + '",' + '"AwnserTitle": "' + \
questions[a].Question['AwnserTitle'] + '",'
if questions[a].Question['DropdownList'] == True:
ThisQuestion = questions[a].Question['DropdownList_Question']
ThisAwnser = str(form.cleaned_data[str('DropdownList_' + str(a))])
Вот форма:
class StrategicBriefForm(forms.Form):
def __init__(self, *args, **kwargs):
questions = kwargs.pop("Questions", None)
super(StrategicBriefForm, self).__init__(*args, **kwargs)
if questions:
i = 0
while i < len(questions):
question = questions[i].Question
if question['DropdownList'] == True:
self.fields['DropdownList_%s' % i] = forms.CharField(label=question['DropdownList_Question']['context'],
required=False)
i = i + 1