如何检查 Django 模板中的用户代理?
我想在我的模板中使用 Django 检查用户代理。我知道使用 JavaScript 可以做到这一点,但我想要一个服务器端解决方案。
我知道我可以在一些中间件类中使用 HttpRequest.META,但我目前没有在寻找。我想使用模板本身中的一些代码来确定这一点,而不依赖于其他文件/类。
有人可以帮忙吗?
I want to check the useragent using Django inside my template. I know this is possible using JavaScript, but I wanted a server side solution.
I know I can use HttpRequest.META in some middleware class, which I am not currently looking for. I want to determine this using some code in the template itself, without any dependency on other files / classes.
Can anybody help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用上下文处理器,更具体地说是
django.core.context_processors.request
。这个答案很好地涵盖了它:
如何我从 Django 中的任何视图将数据传递到任何模板?
尤其是这篇博文,在 SO 答案中引用:
http://www.b-list .org/weblog/2006/jun/14/django-tips-template-context-processors/
You need to use context processors, more specifically
django.core.context_processors.request
.This SO answer covers it quiet well:
How can I pass data to any template from any view in Django?
Especially this blog post, that is referenced in the SO answer:
http://www.b-list.org/weblog/2006/jun/14/django-tips-template-context-processors/