1. ホーム
  2. django

[解決済み] Django テンプレート内で現在の URL を取得する方法は?

2022-03-15 10:52:46

質問

テンプレート内で現在のURLを取得する方法を知りたいのですが。

私の現在のURLがそうだとします。

.../user/profile/

これをテンプレートに返すにはどうしたらよいでしょうか。

どのように解決するのですか?

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 }}