76
You can use the csrf_exempt
decorator to disable CSRF protection for a particular view.
Say your url pattern is:
('^my_page/$', direct_to_template, {'template': 'my_page.html'})
Add the following import to your urls.py
:
from django.views.decorators.csrf import csrf_exempt
Then change the url pattern to:
('^my_page/$', csrf_exempt(direct_to_template), {'template': 'my_page.html'})
74
You can Use @csrf_exempt
decorator to excempt csrf token for this you have to import
from django.views.decorators.csrf import csrf_exempt
then write @csrf_exempt
before your view
this will work properly
- [Django]-Django: How do I add arbitrary html attributes to input fields on a form?
- [Django]-How to automatically login a user after registration in django
- [Django]-How to delete a record in Django models?
Source:stackexchange.com