• Ukieweb

    佳的博客

    曾梦想仗剑天涯,后来工作忙没去。

Django 关于禁用 csrf 和 使用 csrf 操作

1. 基本使用

 form表单中添加
    {% csrf_token %}

2. 全站禁用

# 'django.middleware.csrf.CsrfViewMiddleware',

3. 局部禁用

'django.middleware.csrf.CsrfViewMiddleware',# 不注释
from django.views.decorators.csrf import csrf_exempt

@csrf_exempt
def csrf1(request):
    if request.method == 'GET':
        return render(request,'csrf1.html')
    else:
        return HttpResponse('ok')

4. 局部使用

# 'django.middleware.csrf.CsrfViewMiddleware', # 需要注释这一句话
from django.views.decorators.csrf import csrf_exempt,csrf_protect

@csrf_protect
def csrf1(request):
    if request.method == 'GET':
        return render(request,'csrf1.html')
    else:
        return HttpResponse('ok')

5. VIEW - CBV模式局部禁用

from django.utils.decorators import method_decorator
from django.views.decorators.csrf import csrf_exempt, csrf_protect
from django.shortcuts import render, HttpResponse
from django.views import View

class Cs(View):
    # @method_decorator(csrf_exempt) 建议用这个,具体原因后续再讲
    @csrf_exempt
    def dispatch(self, request, *args, **kwargs):
        return super().dispatch(request, *args, **kwargs)
    def get(self, request, *args, **kwargs):
        return HttpResponse('GET,响应内容')
    def post(self, request, *args, **kwargs):
        return HttpResponse('Post,响应内容')

6. CBV 局部使用

from django.views.decorators.csrf import csrf_exempt, csrf_protect
from django.utils.decorators import method_decorator
from django.shortcuts import render, HttpResponse
from django.views import View

class Cs(View):
    # @method_decorator(csrf_exempt)
    @method_decorator(csrf_protect)
    def dispatch(self, request, *args, **kwargs):
        return super().dispatch(request, *args, **kwargs)
    def get(self, request, *args, **kwargs):
        return HttpResponse('GET,响应内容')
    def post(self, request, *args, **kwargs):
        return HttpResponse('Post,响应内容')

7. 关于method_decorator的使用

Converts a function decorator into a method decorator. It can be used to decorate methods or classes; in the latter case, name is the name of the method to be decorated and is required.

  • name 这个参数是必备的,是为了装饰类中的get方法还是post方法。。。等等

from django.utils.decorators import method_decorator
def test(func):  # 装饰器
    def inner(*args, **kwargs):
        print('hello,23232323')
        return func(*args, **kwargs)
    return inner
    
    
@method_decorator(test, name='get')
class Cs(View):
    # @method_decorator(csrf_exempt)
    # @method_decorator(csrf_protect)
    def dispatch(self, request, *args, **kwargs):
        return super().dispatch(request, *args, **kwargs)
    def get(self, request, *args, **kwargs):
        return HttpResponse('GET,响应内容')
    def post(self, request, *args, **kwargs):
        return HttpResponse('Post,响应内容')

0
0
下一篇:python 判断当前时间是否在一个时间范围内

0 条评论

老佳啊

85后,大专学历,中原人士,家里没矿。

由于年轻时长的比较帅气,导致在别人眼里,我一直不谈恋爱的原因是清高,实则是自己的小自卑。最大的人生目标就是找一个相知相爱相容的人,共度余生。

和人相处时如果能感受到真诚,会非常注重彼此的关系,对别人没有什么心机,即使有利益冲突,一般也会以和为贵,因为在这个世界上,物质的东西,从来不会吸引到我。

特别迷恋那些大山大水,如果现在还能隐居,可能早就去了。对那些宏伟的有底蕴的人文景观比较不感冒。

从事于IT行业,却一直对厨房念念不忘,由于身材魁梧,总觉得自己上辈子是个将军,可惜这辈子没当兵,也不会打架。