gpt4 book ai didi

python - 使用 peewee 检查查询是否存在

转载 作者:太空狗 更新时间:2023-10-30 00:20:50 25 4
gpt4 key购买 nike

我在 Python 中使用 Peewee 库,我想检查是否存在查询。如果记录不存在,我不想创建它,所以我不想使用 get_or_create。肯定有比将 try/except 与 get 一起使用更好的解决方案,但我什么也没看到。请让我知道是否有更好的方法。谢谢。

最佳答案

你可以使用.exists():

query = User.select().where(User.username == 'charlie')
if query.exists():
# A user named "charlie" exists.
cool()

http://docs.peewee-orm.com/en/latest/peewee/api.html?highlight=exists#SelectBase.exists

关于python - 使用 peewee 检查查询是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31714590/

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