gpt4 book ai didi

python - 有没有办法在 peewee 中查询 query.all()?

转载 作者:行者123 更新时间:2023-12-04 16:30:44 27 4
gpt4 key购买 nike

我需要将所有数据从 SQL 表传输到 html 页面。在 SQLAlchemy 中,我会做这样的事情:

class Author(db.Model):
id = db.Column(db.Integer, primary_key=True)
first = db.Column(db.String(80))
last = db.Column(db.String(80))


@app.route('/authors')
def get_authors():
authors = Author.query.all()
# Serialize the queryset
result = authors_schema.dump(authors)
return jsonify({'authors': result.data})
有没有类似 authors = Author.query.all() 的东西在peewee?

最佳答案

所以我做这个。

@app.route('/authors')
def get_authors():
authors = Author.select()
return render_template('aurhors.html', authors=authors)

在 html 中是这样的。
 {% for a in authors %}
<p>{{a.author_name}}</p>
{% endfor %}

我只是在开始学习python,所以谢谢你的帮助。

关于python - 有没有办法在 peewee 中查询 query.all()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43755511/

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