“Django import CSRF_Expt” Kod odpowiedzi

CSRF_Expt

#first you need to import this
from django.views.decorators.csrf import csrf_exempt

#now use @csrf_exempt dacorator as follows

@csrf_exempt
def exampleview(request):
	pass
	#now this view will not require csrf_token to handle post requests 
Pleasant Partridge

Django import CSRF_Expt

from django.views.decorators.csrf import csrf_exempt
Sugam Karki

Odpowiedzi podobne do “Django import CSRF_Expt”

Pytania podobne do “Django import CSRF_Expt”

Więcej pokrewnych odpowiedzi na “Django import CSRF_Expt” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu