gpt4 book ai didi

django-templates - Django : user info in template

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

我的 base.html 模板中有这个:

{% if user.is_authenticated %}
<p style="color:#000;">
Welcome
{{ user.first_name }}
|
<a href="/logout/">Logout</a>
</p>
{% endif %}

在我进行身份验证并转到此页面后,我的名字没有出现。谁能告诉我为什么?

“欢迎”也没有出现。所以,这肯定在 user.is_authenticated 上失败了。 .

谢谢。 :)

最佳答案

django.contrib.auth.context_processors.auth中间件负责设置request.user在请求到达 Controller 之前。

为了从模板访问它,您需要传递此变量或 RequestContext .例子:

def something(request):
context_instance = RequestContext(request)
template_name = 'your_template.html'
extra_context = { 'other_variable': 'some value' }
return render_to_response(template_name, extra_context, context_instance)

这样,所有请求变量都可以从模板访问。

关于django-templates - Django : user info in template,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3378762/

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