本文整理汇总了Python中django.apps.registry.Apps.get_app_configs方法的典型用法代码示例。如果您正苦于以下问题:Python Apps.get_app_configs方法的具体用法?Python Apps.get_app_configs怎么用?Python Apps.get_app_configs使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类django.apps.registry.Apps
的用法示例。
在下文中一共展示了Apps.get_app_configs方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_models
# 需要导入模块: from django.apps.registry import Apps [as 别名]
# 或者: from django.apps.registry.Apps import get_app_configs [as 别名]
def get_models():
result = []
apps = Apps(settings.INSTALLED_APPS)
for app_config in apps.get_app_configs():
try:
import_module('%s.comments' % app_config.module.__name__)
except ImportError:
pass
except Exception as e:
raise e
for attr_name in dir(app_config.models_module):
attr = getattr(app_config.models_module, attr_name)
if isinstance(attr, ModelBase) and attr.__module__ == '%s.models' % app_config.module.__name__:
result.append(attr)
return result