Django,过滤最近添加的元素

发布于 2024-08-19 21:42:00 字数 349 浏览 2 评论 0原文

我想检索最近添加的元素,如果根本没有,则分配一些默认值,例如:

query = X.objects.filter(name="aa",type="b")[0]
if query:
    resultname =query.name
    resulttype = query.type
else:
    resultname = "a default name"
    resulttype = "a default type"

这不起作用,因为当第一行 query = X.objects.filter( name="aa",type="b")[0],执行,过滤后的查询列表为空。

I want to retrieve the most recently added element and if there is none at all, assign some default values such as:

query = X.objects.filter(name="aa",type="b")[0]
if query:
    resultname =query.name
    resulttype = query.type
else:
    resultname = "a default name"
    resulttype = "a default type"

This is not working as it will raise an exception when the first line, query = X.objects.filter(name="aa",type="b")[0], executes and the filtered query list is empty.

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

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

发布评论

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

评论(1

他是夢罘是命 2024-08-26 21:42:00

QuerySet 建立索引会生成单个模型(如果存在)。如果不存在则捕获异常,或者预先在 QuerySet 上使用 len() 来查看是否找到任何记录。

Indexing a QuerySet results in a single model, if any exist. Either catch the exception if none exist, or use len() beforehand on the QuerySet to see if any records were found.

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