当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Django ContentTypeManager用法及代码示例


本文介绍django.contrib.contenttypes.models.ContentTypeManager的用法。

声明

class ContentTypeManager

ContentType 还有一个自定义管理器 ContentTypeManager ,它添加了以下方法:

当您知道需要使用 ContentType 但又不想费心获取模型的元数据以执行手动查找时, get_for_model() 方法特别有用:

>>> from django.contrib.auth.models import User
>>> ContentType.objects.get_for_model(User)
<ContentType: user>

相关用法


注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.contrib.contenttypes.models.ContentTypeManager。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。