Posts by Iury Alves de Souza • 11 points
1 post
-
1
votes1
answer2809
viewsA: POST via Ajax with Django
You can use the csrf_exempt developer in your view function, which in this case is customer_save from django.views.decorators.csrf import csrf_exempt @csrf_exempt def customer_save(request): if…