- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
遵循 docs
If TEMPLATE_CONTEXT_PROCESSORS contains this processor, every RequestContext will contain these variables:
user – An auth.User instance representing the currently logged-in user (or an AnonymousUser instance, if the client isn’t logged in). perms – An instance of django.contrib.auth.context_processors.PermWrapper, representing the permissions that the currently logged-in user has.
我将这些行添加到settings.py
TEMPLATE_CONTEXT_PROCESSORS = (
"django.contrib.auth.context_processors.auth",
)
渲染我的模板如下
def profile_view(request):
return render_to_response('profile.html', { 'profile' : 1 })
我的印象是请求上下文和用户将自动传递。情况并非如此,还是我应该显式地将 context_instance=template.RequestContext(request))
添加到每个 View ?
谢谢。
最佳答案
是的,如果您想使用 render_to_response
并且希望模板上下文数据可用,您应该传入 RequestContext
实例。
或者,如果您使用 django.shortcuts.render
渲染页面,RequestContext
将自动注入(inject)。
您可能会发现这个答案也很有用:Django - what is the difference between render(), render_to_response() and direct_to_template()?
关于django - 用户未传递到模板 TEMPLATE_CONTEXT_PROCESSORS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24494818/
我需要在所有页面中显示一些统计数字,所以我决定使用上下文处理器。但我刚刚发现我的函数在每次页面加载时都会被调用 2 到 7 次。我在函数内执行了 4 次查询,因此性能非常差。每个页面加载最多可能需要
遵循 docs If TEMPLATE_CONTEXT_PROCESSORS contains this processor, every RequestContext will contain th
我没有 TEMPLATE_CONTEXT_PROCESSORS在我的默认设置中! TEMPLATE_CONTEXT_PROCESSORS = ( 'django.contrib.auth.co
我尝试使用 django-endless-pagination https://django-endless-pagination.readthedocs.io/en/latest/start.htm
您好,我正在将项目从 Django 1.9.12 迁移到 Django2.0我还没写,是一个不再在我们企业工作的同事留下的 安装Django2后 from django.conf.global_set
安装了 Django 1.10.4 并启动了一个名为 test_py 的项目。之后创建了一个名为 test_app1 的应用。 在创建应用程序后,计划创建一个安装程序以将其作为标准独立应用程序运行。
我正在关注 django 报告生成器快速入门手册: pip 安装 django-report-builder - 完成 将 report_builder 添加到 INSTALLED_APPS - 完成
我正在将一个项目升级到 Django 1.10,它的代码如下: from django.conf.global_settings import TEMPLATE_CONTEXT_PROCESSORS
我是一名优秀的程序员,十分优秀!