[wecode TIL] 장고 에러(6/19)

hyuckhoon.ko·2020년 6월 19일
0

What I learned in wecode

목록 보기
58/109

django Proxy Authentication Required

위의 에러가 발생하여

  1. 터미널 창에 ifconfig검색 -> 어제 설정해둔 ip 주소값을 새로 수정
    결과 : 에러 해결







TypeError 에러 발생



  1. models.py 정의된 모델 확인.
    • 필드의 데이타 타입확인
    • ForeignKey 확인

  1. 로그인 데코레이터 부분 디버깅.
    데코레이터 이상없음

  1. 허무하게도 {'TYPE:ERROR'} 따옴표 누락으로 인한 에러 발생
except jwt.DecodeError:
    return JsonResponse({'INVALID':'TOKEN'}, status=411)
except User.DoesNotExist:
    return JsonResponse({'USER':'NONE'}, status=401)
except KeyError:
    return JsonResponse({'KEY':'ERROR'}, status=405)
except TypeError:
    return JsonResponse({'TYPE:ERROR'}, status=407)

(가장 최하단 확인)

0개의 댓글