我正在尝试使用html页面在网页中显示查询结果。我只能显示列中的第一行,但我需要显示所有行。请指示:
def formval():
# --connection syntax here--
cursor = connection.cursor()
if request.method == 'POST':
x = request.form['weekno']
cursor.execute("SELECT Document FROM Backlog where custno=?",x)
result = cursor.fetchall()
return render_template('home.html',weekno=result)
home.html
{% for docno in weekno %}
<p>{{ docno }}</p>
{% endfor %}
以上是我在html页面中使用的一段代码来捕获数据库结果。
谢谢!