如何在Django模板中获取当前URL?
我想知道如何在模板中获取当前URL。
说我目前的网址是:
.../user/profile/
如何将其返回到模板?
回答:
Django 1.9及更高版本:
## template{{ request.path }} # -without GET parameters
{{ request.get_full_path }} # - with GET parameters
旧:
## settings.pyTEMPLATE_CONTEXT_PROCESSORS = (
'django.core.context_processors.request',
)
## views.py
from django.template import *
def home(request):
return render_to_response('home.html', {}, context_instance=RequestContext(request))
## template
{{ request.path }}
以上是 如何在Django模板中获取当前URL? 的全部内容, 来源链接: utcz.com/qa/427632.html