Django:获取当前请求的完整URL

时间:2011-10-27 23:53:43

标签: python django http

  

可能重复:
  How can I get the full/absolute URL (with domain) in Django?

当我使用request.get_full_path()时,我会得到类似

的内容
/whatever/path?with=get_too

但我没有得到主机名!我想获取完整的URL,以便从外部页面重定向回此页面。

现在,我可以尝试像'%s%s' % (request.get_host(), request.get_full_path())这样的东西,但如果有现成的东西,那会更好,因为那样我就可以确定所有怪癖都已经完成了。

有吗?

0 个答案:

没有答案