本文介绍了Django中的get_list_or_404订购的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试订购get_list_or_404方法的结果

I'm trying to order the results of the get_list_or_404 method

get_list_or_404(...).order_by('name')

似乎无效

执行此操作的方式是什么?

What's the way to do this?

推荐答案

您可以这样做:

get_list_or_404(Model.objects.order_by('name'))

当然,您总是可以在Model的 Meta 类中指定顺序。

And of course you can always specify ordering in Model's Meta class.

这篇关于Django中的get_list_or_404订购的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-24 20:37