模板中的打印请求

发布于 2024-10-07 00:02:16 字数 472 浏览 2 评论 0原文

 def test4(request):
   logging.debug(request)
   logging.debug(request.META['HTTP_REFERER'])
   return render_to_response('test2/test4.html', context_instance=RequestContext(request))

在上面的代码中,可以在 test4.html 中打印请求,也可以在我尝试过的 request.META['HTTP_REFERER'] 中打印

      <script>

        alert('{{request}}');    //prints empty
        alert('{{request.META.HTTP_REFERER}}');  //prints empty

      </script>
 def test4(request):
   logging.debug(request)
   logging.debug(request.META['HTTP_REFERER'])
   return render_to_response('test2/test4.html', context_instance=RequestContext(request))

In the above code can request be printed in the test4.html and also the request.META['HTTP_REFERER'] i had tried

      <script>

        alert('{{request}}');    //prints empty
        alert('{{request.META.HTTP_REFERER}}');  //prints empty

      </script>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

天荒地未老 2024-10-14 00:02:16

您是否已将 django.core.context_processors.request 添加到上下文处理器设置中? 默认情况下未启用

Have you added django.core.context_processors.request to your context processors setting? It's not enabled by default.

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