在Django ORM
或SQLAlchemy
中定义模型字段时,例如
company_name = models.CharField(_('Company Name'), max_length=200, blank=True, null=True, help_text=_('Here some usefull information about the field'))
您可以设置详细名称(在我的示例Company Name
中),并可以通过以下方式进行访问:
ContactData._meta.get_field('company_name').verbose_name
mongoose
/ mongodb
模式是否有相同的选项?