gpt4 book ai didi

python - 数据表 python flask

转载 作者:行者123 更新时间:2023-11-29 02:40:52 24 4
gpt4 key购买 nike

我对 Bootstrap 中的 mysql db python 表有疑问。

我的问题是我的数据没有显示在表格中。我可以看到它获取数据,因为当我在 mysql 数据库中添加带有数据的行时,表会增加。

app.py代码:

@app.route('/dashboard')
@is_logged_in
def dashboard():
#create cursor
cur = mysql.get_db().cursor()
#Get data
result = cur.execute("SELECT * FROM test")
data=cur.fetchall()
if result > 0:
return render_template('dashboard.html', data=data)
else:
msg = 'No DOC Found'
return render_template('dashboard.html', msg=msg)
#close connection
cur.close()
return render_template('dashboard.html' )

.html

  <table class="table table-striped">
<tr>
<th>data1</th>
<th>data2</th>
</tr>
{% for test in data%}
<tr>
<td>{{test.rdno}}</td>
<td>{{test.ipno}}</td>

{% endfor %}
</tr>
</table>

最佳答案

代替

<td>{{test.rdno}}</td>
<td>{{test.ipno}}</td>

这样做

  <td>{{test[0]}}</td>
<td>{{test[1]}}</td>

关于python - 数据表 python flask,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52425073/

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