我正在这样做:
p = MyModel.objects.filter(user__username="me").annotate(friend_count=Count(friends))
当我看:
p[0]._meta.get_all_field_names()
它返回模型上定义的所有内容,但不返回带注释的字段“friend_count”
有没有可以用来查看特定模型实例的所有带注释字段的函数?
我正在这样做:
p = MyModel.objects.filter(user__username="me").annotate(friend_count=Count(friends))
当我看:
p[0]._meta.get_all_field_names()
它返回模型上定义的所有内容,但不返回带注释的字段“friend_count”
有没有可以用来查看特定模型实例的所有带注释字段的函数?