手动创建 Django QuerySet 或者手动将对象添加到 QuerySet

发布于 2024-09-12 19:48:58 字数 635 浏览 4 评论 0原文

基本上我需要一种优雅的方式来执行以下操作:-

obj1 = Model1.objects.select_related('model2').get(attribute1=value1)
obj2 = Model1.objects.select_related('model2').get(attribute2=value2)
model2_qs = QuerySet(model=Model2, qs_items=[obj1.model2,obj2.model2])

我可能没有正确思考,但是做类似以下的事情对我来说似乎无限愚蠢。:-

obj1 = Model1.objects.select_related('model2').get(attribute1=value1)
model2_qs = Model2.objects.filter(pk=obj1.model2.pk)

是的,我需要最终得到 Model2 的 QuerySet 供以后使用(特别是传递到 Django 表单)。

在上面的第一个代码块中,即使我使用 filter 而不是 get ,我显然也会有一个 Model1 的 QuerySet。在我的情况下,反向查找可能并不总是可行。

Basically I need a graceful way to do the following:-

obj1 = Model1.objects.select_related('model2').get(attribute1=value1)
obj2 = Model1.objects.select_related('model2').get(attribute2=value2)
model2_qs = QuerySet(model=Model2, qs_items=[obj1.model2,obj2.model2])

I may not be thinking right, but doing something like the following seems infinitely stupid to me.: -

obj1 = Model1.objects.select_related('model2').get(attribute1=value1)
model2_qs = Model2.objects.filter(pk=obj1.model2.pk)

Yes, I need to end up with a QuerySet of Model2 for later use (specifically to pass to a Django form).

In the first code block above,even if I use filter instead of get I will obviously have a QuerySet of Model1. Reverse lookups may not always be possible in my case.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

姜生凉生 2024-09-19 19:48:58

如果您只是想创建一个项目的查询集,您可以通过一些无法在 SQL 中表示的复杂过程来选择这些项目,那么您始终可以使用 __in 运算符。

wanted_items = set()
for item in model1.objects.all():
    if check_want_item(item):
        wanted_items.add(item.pk)

return model1.objects.filter(pk__in = wanted_items)

显然,您必须根据您的情况进行调整,但它至少应该为您提供一个起点。

If you're simply looking to create a queryset of items that you choose through some complicated process not representable in SQL you could always use the __in operator.

wanted_items = set()
for item in model1.objects.all():
    if check_want_item(item):
        wanted_items.add(item.pk)

return model1.objects.filter(pk__in = wanted_items)

You'll obviously have to adapt this to your situation but it should at least give you a starting point.

横笛休吹塞上声 2024-09-19 19:48:58

要手动将对象添加到 QuerySet,请尝试 _result_cache

objs = ObjModel.objects.filter(...)
len(objs) #or anything that will evaluate and hit the db
objs._result_cache.append(yourObj)

PS:我不理解(或试图)chefsmart 的问题,但我相信这回答了标题中的问题。

To manually add objects to a QuerySet, try _result_cache:

objs = ObjModel.objects.filter(...)
len(objs) #or anything that will evaluate and hit the db
objs._result_cache.append(yourObj)

PS: I did not understand (or tried to) chefsmart's question but I believe this answers to the question in title.

弄潮 2024-09-19 19:48:58

您无法手动将对象添加到查询集。但你为什么不把它们列在一个列表中呢?

obj1 = Model1.objects.select_related('model2').get(attribute1=value1)
obj2 = Model1.objects.select_related('model2').get(attribute2=value2)
model2 = list(obj1, obj2)

You can't manually add objects to a QuerySet. But why don't you put them in a list ?

obj1 = Model1.objects.select_related('model2').get(attribute1=value1)
obj2 = Model1.objects.select_related('model2').get(attribute2=value2)
model2 = list(obj1, obj2)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文