2
양식 작업시 다음 장고 버그를 어떻게 수정합니까?Django - 'WSGIRequest'유형의 인수가 반복 가능하지 않습니다.
# This:
# job_form = JobForm(request)
# Should Be:
job_form = JobForm(request.GET) # OR
job_form = JobForm(request.POST)
원래 아무것도를 설정 할 수 없습니다 :
TypeError at /url/
argument of type 'WSGIRequest' is not iterable