小编典典

如何在 Django 模板中获取当前 URL?

all

我想知道如何在模板中获取当前 URL。

假设我当前的网址是:

.../user/profile/

如何将此返回到模板?


阅读 132

收藏
2022-03-29

共1个答案

小编典典

Django 1.9 及更高版本:

## template
{{ request.path }}  #  -without GET parameters 
{{ request.get_full_path }}  # - with GET parameters

老的:

## settings.py
TEMPLATE_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 }}
2022-03-29