Use of meta class in django
问题 Can someone please explain why is meta class used in the following example. Ex: Class Employee (models.Model): name = models.ForeignKey(name) Gender = models.IntegerField() class Meta: ordering = ["Gender"] Thanks. 回答1: Because author/programmer wants to sort results by value of Gender field. 回答2: Django models use the Meta class to contain extra information about the model that would not necessarily be appropriate to contain within the model class itself. Note that this is not the same as