Django:检查查询集以获取应用的过滤器

发布于 2024-12-12 03:18:41 字数 80 浏览 0 评论 0原文

有没有办法检查查询集并获取有关已应用哪些过滤器/排除的信息?

我需要它来调试:我无法理解为什么我的查询集排除了一些数据......

Is there a way to inspect a queryset and get info about which filters/exclude have been applied?

I need it for debugging: I cannot understand why my queryset excludes some data...

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

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

发布评论

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

评论(3

摇划花蜜的午后 2024-12-19 03:18:41

这看起来并不容易做到。每个过滤器以不同的方式应用于查询对象,因此您不会找到布局清晰的“filter1”、“filter2”、“filter3”

查看 myqueryset.query.__dict__ - 传入过滤器立即分为相关区域,并且不存储任何记录。详细信息请参见django.db.models.sql.query.Query

我会检查 SQL。

print myqueryset.query 

That doesn't seem easy to do. Each filter is applied differently to the query object so you're not going to find a cleanly laid out "filter1", "filter2", "filter3".

Check out myqueryset.query.__dict__ - the incoming filter is separated into relevant areas immediately and no record stored. Details in django.db.models.sql.query.Query.

I'd check out the SQL instead.

print myqueryset.query 
离旧人 2024-12-19 03:18:41

您还可以使用:

your_qs.query.where.children

或:

your_qs._has_filters().__dict__['children']

和 来访问您应用的第一个过滤器:

your_qs._has_filters().__dict__['children'][0].__dict__

You can use also:

your_qs.query.where.children

or:

your_qs._has_filters().__dict__['children']

and to access to the first filter that you applied:

your_qs._has_filters().__dict__['children'][0].__dict__
临走之时 2024-12-19 03:18:41

如果您在 shell 中进行调试:

from django.db import connection
print connection.queries

如果您在浏览器中发出请求,请使用 django 调试工具栏,这是一个很棒的工具,并且非常有帮助:

Django 调试工具栏

If you are debugging in a shell:

from django.db import connection
print connection.queries

If you are making requests in a browser use django debug toolbar, it's a great tool and can be very helpful:

Django Debug Toolbar

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文