json post 방식 처리
2021. 1. 17. 19:04ㆍ파이썬/Django
from django.views.decorators.csrf import csrf_exempt
import json
@csrf_exempt
def setData(request) :
work_id = json.loads(request.POST.get('work_id'))
tasks = json.loads(request.POST.get('gantts'))['tasks']
print(work_id,tasks)
@csfr_exempt 없으면 403에러 발생
json.loads를 사용하지 않으면, 데이터 인식이 안됨
'파이썬 > Django' 카테고리의 다른 글
원하는 버전 설치 (0) | 2021.01.20 |
---|---|
Django BooleanField 사용시 icon 에러 (0) | 2021.01.18 |
Forbidden (CSRF token missing or incorrect.): (0) | 2021.01.17 |
In order to allow non-dict objects to be serialized set the safe parameter to False. (0) | 2021.01.16 |
Django custom template tag filter 추가 (0) | 2021.01.16 |