本文主要是介绍4、Django Admin对自定义的计算字段进行排序,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
通常,Django会为模型属性字段,自动添加排序功能。当你添加计算字段时,Django不知道如何执行order_by,因此它不会在该字段上添加排序功能。
如果要在计算字段上添加排序,则必须告诉Django需要排序的内容。你可以通过在在计算字段方法中设置admin_order_field属性来执行此操作 。
以OriginAdmin为例,添加以下代码
hero_count.admin_order_field = '_hero_count'
villain_count.admin_order_field = '_villain_count'
完整代码如下:
@admin.register(Origin)
class OriginAdmin(admin.ModelAdmin):list_display = ("name", "hero_count", "villain_count")def get_queryset(self, request):queryset = super().get_queryset(request)queryset = queryset.annotate(_hero_count=Count("hero", distinct=True),_villain_count=Count("villain", distinct=True),)return querysetdef hero_count(self, obj):return obj._hero_countdef villain_count(self, obj):return obj._villain_counthero_count.admin_order_field = '_hero_count'villain_count.admin_order_field = '_villain_count'
显示效果:
前
后,点击抬头标签,显示字段排序
这篇关于4、Django Admin对自定义的计算字段进行排序的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!