后台传一个list类型的fileName里面有三个字符串 现在需要在html接收用tr td显示出来
时间: 2024-02-20 19:59:56 浏览: 59
Python数据类型详解(一)字符串
好的,可以使用Jinja2模板语言来实现。
首先,在后台将list类型的fileName传给前端:
```
@app.route('/')
def index():
fileName = ['file1.txt', 'file2.txt', 'file3.txt']
return render_template('index.html', fileName=fileName)
```
然后,在HTML页面中使用Jinja2模板语言来遍历list,生成表格:
```
<table>
<tr>
<th>文件名</th>
</tr>
{% for file in fileName %}
<tr>
<td>{{ file }}</td>
</tr>
{% endfor %}
</table>
```
这样就可以将list中的文件名显示在表格中了。
阅读全文