gpt4 book ai didi

html - 为什么从 View 传递到 Django 模板时,空格后的列表元素消失了?

转载 作者:行者123 更新时间:2023-11-28 02:20:23 25 4
gpt4 key购买 nike

我使用 Django 2.1。我在 views.py 中有一些代码:

views.py

...
zipped = zip(ph, mean)
return render(request,'project/list.html',
{'section': 'project', 'lines': zipped})

到目前为止一切都是正确的,我进行了调试并且一切正常。

数据

ph = ['Pre formation', 'Nice view'] #as an example not exact values
mean = [10.0, 14.6]

但是在html里面

html

{% for ph, mean in lines %}
...
<td><input type="text" size="35" name="txt1" value={{ph}}></td>
<td><input type="text" size="35" name="txt2" value={{mean}}></td>
...
{% endfor %}

我得到的数据

Pre 10.0
Nice 14.6

问题:为什么它只需要文本直到 html 中的空格?我调试压缩的内部 View 包含所有信息。我该如何解决?

最佳答案

尝试:

{% for ph, mean in lines %}
...
<td><input type="text" size="35" name="txt1" value="{{ph}}"></td>
<td><input type="text" size="35" name="txt2" value="{{mean}}"></td>
...
{% endfor %}

缺少引号。

关于html - 为什么从 View 传递到 Django 模板时,空格后的列表元素消失了?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57990158/

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