gpt4 book ai didi

python - 如何在基于 Django 类的 View 中使用 csrf_exempt 分派(dispatch)特定方法

转载 作者:行者123 更新时间:2023-12-05 05:17:26 26 4
gpt4 key购买 nike

我正在尝试在 Django 的基于类的 View 上设置 csrf_exempt 我试过这个:

现在,我的类(class)是这样的:

class UserView(View):

# Check csrf here
def get(self, request, pk):
#code here

# I want to exempt csrf checking only on this method
def post(self, request):
#code here

同时,如果我使用 @method_decorator(csrf_exempt, name='dispatch') 它将应用于类中的每个方法。在 Django 中仅针对基于类的 View 中的特定方法进行豁免的最佳方法是什么?

最佳答案

你不能只修饰 post()/put() 因为 as_view 函数在 base.py 中除了 dispatch() 之外,不携带来自其他方法的 __dict__ 方法。 Source .
您只能装饰一个类或重写 dispatch() 方法为 documentation说。

关于python - 如何在基于 Django 类的 View 中使用 csrf_exempt 分派(dispatch)特定方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49254573/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com