gpt4 book ai didi

Django 检索 GET 列表

转载 作者:行者123 更新时间:2023-12-02 17:47:28 25 4
gpt4 key购买 nike

我是 Django 的新手,我有一个 URL 列表,例如:

example.com?item=test&item=for&test=url

我知道如何在 View 中检索这个值:

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

关于Django 检索 GET 列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12955323/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com