我正在用Peewee和PostgreSQL构建Flask应用程序。我想从表中获取整数ID的列表。
def get_tagsID(self):
return tag_list.select(tag_list.id).order_by(tag_list.tagGroup)
然后在html文件中我有这个:
{% for t in test %}
{{ t.id }},
{% endfor %}
哪个创建的:29, 30, 32, 26,
现在,我想在app.py文件中列出一个适当的列表
tagList = []
tags = modelFinance.Finance().get_tagsID()
for t in tags:
tagList.append(t)
session['filter'] = tagList
给出此错误:
TypeError: <modelFinance.tag_list object at 0x758d9430> is not JSON serializable
如何从此查询中获取ID列表?