Django 渲染到响应
我将其放在
...}, context_instance=RequestContext(request))
所有 render_to_response
的末尾。我确信这是不对的。谁能告诉我什么时候应该使用这些?
I'm putting
...}, context_instance=RequestContext(request))
at the end of all my render_to_response
's. I'm sure this is not right. Can anyone tell me when I should be using these?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 Django 1.3 您可以使用 render() 快捷函数,因此您不必显式编写每个视图的
context_instance=RequestContext(request)
。If you are using Django 1.3 you can use the render() shortcut function so you don't have to explicitly write
context_instance=RequestContext(request)
for each view .你做得“正确”。这意味着所有上下文处理器都将在此视图上运行,并且您将可以访问模板中的所有有趣的部分。
另一种方法是使用
direct_to_template
,这样您就不必实例化 RequestContext 对象,但具有相同的结果。You are doing it "right". This means that all of the Context Processors will run on this view, and you will have access to all of the juicy bits in your template.
The other way to do this is to use
direct_to_template
, which saves you having to instantiate a RequestContext object, but has the same outcomes.