作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我开始将基于函数的 View 转换为基于类的 View 。这是我第一次使用基于类的 View ,所以我真的不知道正确的方法。
FBV的代码:
@auth_check
def thank_you(request):
return render(request, 'thank_you.html')
class ThankYouView(TemplateView):
template_name = "thank_you.html"
最佳答案
https://docs.djangoproject.com/en/dev/topics/class-based-views/intro/#decorating-the-class
使用基于类的 View ,您可以装饰 dispatch
方法。
from django.utils.decorators import method_decorator
class ThankYouView(TemplateView):
template_name = "thank_you.html"
@method_decorator(auth_check)
def dispatch(self, *args, **kwargs):
return super(ThankYouView, self).dispatch(*args, **kwargs)
关于django - 如何在 TemplateView 中放置自定义装饰器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15187567/
我是一名优秀的程序员,十分优秀!