本文整理汇总了Python中django.db.models.Manager.use_for_related_fields方法的典型用法代码示例。如果您正苦于以下问题:Python Manager.use_for_related_fields方法的具体用法?Python Manager.use_for_related_fields怎么用?Python Manager.use_for_related_fields使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类django.db.models.Manager
的用法示例。
在下文中一共展示了Manager.use_for_related_fields方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: manager_class
# 需要导入模块: from django.db.models import Manager [as 别名]
# 或者: from django.db.models.Manager import use_for_related_fields [as 别名]
def manager_class(model, queryset_class=None, class_name=None,
use_for_related_fields=False):
"""
Return the manager class for model.
If an optional queryset is given, returns a new class using the
Manager.from_queryset() API.
"""
for cls in model.mro():
if not issubclass(model, Model):
continue
try:
mgm = cls.objects
break
except AttributeError:
pass
else:
mgm = Manager()
if not isinstance(mgm, BaseManager):
raise TypeError('unexpected manager class: %s' %
mgm.__class__.__name__)
if queryset_class is not None:
mgm = mgm.from_queryset(queryset_class, class_name=class_name)
if use_for_related_fields:
mgm.use_for_related_fields = True
return mgm