본문 바로가기
Coding/Python

장고(Django) csrf token 무시하는법

by Hide­ 2017. 10. 8.
반응형

from django.views.decorators.csrf import csrf_exempt 선언 후

@csrf_exempt로 명시


ex.

from django.views.decorators.csrf import csrf_exempt


@csrf_exempt

def a():

 print 1


또는 settings.py 에서 MIDDLEWARE 부분에 있는 csrf토큰관련 코드 주석처리