将 request.user 传递给 Django 中的模板
还有另一种方法可以通过不从视图传递 request.user 来获取 request.user 吗?我认为将 request.user 从视图中的所有函数传递到模板是非常错误的。模板是否有任何方法或方式可以获取用户或数据库中的任何对象?
Is there another way to get the request.user by not passing it from the views? I think passing request.user from all functions in views to the template is quite wrong. Is there any method or way that the template will get the user or any object in the database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认情况下(我说的是 Django 版本 1.3),您不需要更改 TEMPLATE_CONTEXT_PROCESSORS。因为 默认值 已经包含 *django.contrib.auth.context_processors.auth *。
所以对于你的问题:默认情况下,你应该能够在模板中使用user、messages和perms变量。例如:
By default (I am talking about Django version 1.3) you do not need change TEMPLATE_CONTEXT_PROCESSORS. Because default value already contains *django.contrib.auth.context_processors.auth*.
So to your question: By default, you should be able to use user, messages and perms variables in your template. For example:
上下文处理器。
Context processors.