我想在模板中呈现SQLite数据库查询的结果。但是,它们看起来都像{ColIntitule': u'I like IceCream'}
。我不想要{}
或列名。如何正确渲染?
def query_db(query, args=(), one=False):
cur = g.db.execute(query, args)
rv = [dict((cur.description[idx][0], value) for idx, value in enumerate(row)) for row in cur.fetchall()]
return (rv[0] if rv else None) if one else rv
@app.route('/toto')
def toto():
entries = query_db("select ColIntitule from toto where col1 = 1")
return render_template('show_results.html', entries = entries)
show_results.html
:
{% extends "layout.html" %}
{% block body %}
<ul class=entries>
{% for entry in entries %}
<li><h2>{{ entry }}</h2>
<br>
{% else %}
<li><em>No entry here</em>
{% endfor %}
</ul>
{% endblock %}
答案 0 :(得分:1)
可能是问题中的拼写错误,但在toto()
中entry
定义并设置了哪个?全球潜伏着吗?
查询结果绑定到entries
但entry
传递给render_template()
的事实可能解释了这一点。
答案 1 :(得分:1)
entries
是dict
个对象的列表,因此当您使用{{ entry }}
在模板中打印它们时,您正在打印dict
个参与者。
您的模板看起来应该更像
{% extends "layout.html" %}
{% block body %}
<ul class=entries>
{% for entry in entries %}
<li><h2>{{ entry["ColIntitule"] }}</h2>
<br>
{% else %}
<li><em>No entry here</em>
{% endfor %}
</ul>
{% endblock %}