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.
我有一个主键列表 L,我想返回一个有序查询集,其中对象的顺序对应于 L 中的主键顺序。
很遗憾
Model.objects.filter(id__in = L)
不保持顺序。
是否有任何其他命令可以维持秩序?
应用与以前相同的排序或之后使用 Python 对其进行排序。