猫鼬如何设置架构字段的元信息?

时间:2019-06-18 10:53:09

标签: mongodb mongoose mongoose-schema

Django ORMSQLAlchemy中定义模型字段时,例如

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模式是否有相同的选项?

0 个答案:

没有答案