如何检查 Django 模板中的用户代理?

发布于 2024-11-07 21:42:12 字数 175 浏览 1 评论 0原文

我想在我的模板中使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦回梦里 2024-11-14 21:42:12

您需要使用上下文处理器,更具体地说是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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文