gpt4 book ai didi

python - Django : IndexError: list index out of range

转载 作者:太空宇宙 更新时间:2023-11-03 10:31:26 25 4
gpt4 key购买 nike

获取异常:

IndexError django.db.models.sql.compiler in apply_converters

IndexError: list index out of range in djagno queryset

我在做这个

object =Info.objects.get(is_active=False,device_id=device_id)

这里的device_id是数据库模式中的长文本类型,它被索引

object =Info.objects.get(is_active=False,device_id=device_id)

最佳答案

你可以尝试使用 .first() ,它会是这样的:

object = Info.objects.filter(is_active=False, device_id=device_id).first()

关于python - Django : IndexError: list index out of range,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57406356/

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