Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はDjangoを初めて使用し、次のようなURLリストを持っています:
example.com?item=test&item=for&test=url
ビューでこの値を取得する方法を知っています:
a = request.GET.getlist('item')
私の問題は次のとおりです。テンプレートでこのリストを取得するにはどうすればよいですか?
ありがとう!!
テンプレートコンテキストを介してテンプレートに渡す必要があります。
例えば
def myview(request): a = request.GET.getlist('item') ... ctx = {'myitems': a} return render(request, 'your_template.html', ctx)
テンプレート内:
{% for item in myitems %} <p>{{ item }}</p> {% endfor %}