0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Djangoのテンプレートでパラメータの値を取得

Last updated at Posted at 2021-01-20

やりたいこと

https://example.com/?year=2021&month=1

でアクセスしたときにパラメータのyearmonthの値をテンプレート側で取りたい。

解決方法

yearの値を取る場合は
{{ request.GET.year }}
で取得。

monthの値を取る場合は
{{ request.GET.month }}
で取得。

備考

{% for key, value in request.GET.items %}
    {{ key }} = {{ value }}
{% endfor %}

こんなふうに回しても取れる。

year = 2021 month = 1
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?