Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的模型中有一个类,它有BooleanField. 我想进行排序,其中BooleanField=True首先显示对象。
BooleanField
BooleanField=True
在 Django 中有什么可以做的吗?我正在搜索文档,但没有成功。
尝试:
Foo.objects.all().order_by('-field')
与任何其他字段类型一样。