gpt4 book ai didi

python - 在 django 模板中删除 [u'']

转载 作者:太空宇宙 更新时间:2023-11-04 15:00:41 25 4
gpt4 key购买 nike


我正在尝试将 JSON 加载到 Django 模板中,这很顺利。但我得到 [] 周围它和 'u 在它之前。我想知道我是否可以做些什么来反对它。这是我使用的代码:

json_response = requests.get(endpoint + "appointments?user="+user+"&access_token="+token+"&start="+str(int(timestamp_start))+"&end="+str(int(timestamp_end))+"&valid=true").json()
appointmentsVrijdag = json_response['response']['data']
return render(request, template, {"appointmentsVrijdag": appointmentsVrijdag})

然后,我使用以下代码将其加载到模板中:

            {% for appointment in appointmentsVrijdag %}
{% if appointment.cancelled != True %}
<tr>
<td>
{{ appointment.teachers }}
{{ appointment.subjects }}
</td>
</tr>
{% endif %}
{% endfor %}

我希望得到一些帮助!

最佳答案

假设 appointment.teachersappointment.subjects 是列表,您可以使用 built-in join filter 将模板中的项目加入其中:

{{ appointment.teachers|join:", " }}
{{ appointment.subjects|join:", " }}

关于python - 在 django 模板中删除 [u''],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34707826/

25 4 0