可能重复:
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())
这样的东西,但如果有现成的东西,那会更好,因为那样我就可以确定所有怪癖都已经完成了。
有吗?