gpt4 book ai didi

python - 在 TemplateView 中使用变量

转载 作者:太空宇宙 更新时间:2023-11-04 04:08:22 25 4
gpt4 key购买 nike

我曾经在 Django 中用这样的函数定义我的页面:

 def pdf(request):
return render(request, 'blog/pdf.html', {'title': 'PDF files'})

我在哪里使用 Title var 作为 html 页面标题。我开始为我的页面使用 TemplateView 类,但我不确定如何在类似这样的内容中使用相同的 title:

class About(LoginRequiredMixin, TemplateView):
template_name = 'blog/about.html'

最佳答案

试试这个,

class About(LoginRequiredMixin, TemplateView):
template_name = 'blog/about.html'

def get_context_data(self, *args, **kwargs):
context = super(About, self).get_context_data(*args, **kwargs)
context['title'] = 'PDF files'
return context

关于python - 在 TemplateView 中使用变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56822755/

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