Django将Meta类内部嵌入grid
中的复数:
models.py
'条目'覆盖' entrys'。
如果我设计Django,我想如果不使用class Entry(models.Model):
....
class Meta:
verbose_name_plural = 'entries'
就可以轻松完成。
class
嵌套类对类属性的优势是什么?
答案 0 :(得分:1)
简短的回答大致是,直接在继承models.Model
的类上的所有属性都应该对应于数据库表中的列/字段。
class Meta
就是您放置所有其他非列/字段相关配置的地方,例如verbose_name_plural
或label
。
文档详细解释here