gpt4 book ai didi

python - Django QuerySet.exclude() : Why are all excluded?

转载 作者:太空宇宙 更新时间:2023-11-04 00:27:11 30 4
gpt4 key购买 nike

我有这样的情况:

ids = [None, None, None]
foo = Foo.objects.filter(common=True).exclude(id__in=ids)

这似乎总是排除所有。

在这种情况下,为什么 id__inid 被威胁为 Nonepk__in 也没有用。我希望它不会排除任何东西,因为所有对象都有有效的 ID。

foo = Foo.objects.filter(common=True)

按预期返回所有对象。

最佳答案

您的查询集将生成类似于 select * from foo where NOT (id in (NULL));

的 SQL

在 SQL 中,x in (NULL)NOT (x in (NULL)) 的计算结果都是 null,因此查询返回 no行。参见 this question了解更多信息。

正如@wim 在评论中指出的那样,解决方案是从列表中过滤掉 None 值:

foo = Foo.objects.filter(common=True).exclude(id__in=[x for x in ids if x is not None])

关于python - Django QuerySet.exclude() : Why are all excluded?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47058497/

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