views.decorators.csrf.csrf_protect()

csrf_protect(view)

Decorator that provides the protection of CsrfViewMiddleware to a view.

Usage:

1
2
3
4
5
6
7
8
from django.views.decorators.csrf import csrf_protect
from django.shortcuts import render
 
@csrf_protect
def my_view(request):
    c = {}
    # ...
    return render(request, "a_template.html", c)

If you are using class-based views, you can refer to Decorating class-based views.

doc_Django
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.