首页 > 其他 > 详细

django中import_string

时间:2020-02-02 14:56:41      阅读:94      评论:0      收藏:0      [点我收藏+]

 

 

 

 

from django.utils.module_loading import import_string

 

 

 

def import_string(dotted_path):
    """
    Import a dotted module path and return the attribute/class designated by the
    last name in the path. Raise ImportError if the import failed.
    """
    try:

module_path, class_name
= dotted_path.rsplit(., 1)

except ValueError: msg = "%s doesn‘t look like a module path" % dotted_path six.reraise(ImportError, ImportError(msg), sys.exc_info()[2]) module = import_module(module_path) try:


return getattr(module, class_name)



except AttributeError: msg = Module "%s" does not define a "%s" attribute/class % ( module_path, class_name) six.reraise(ImportError, ImportError(msg), sys.exc_info()[2])

解释就是:   将一个包含函数名字的路径分开后使用反射来导入,执行

 

django中import_string

原文:https://www.cnblogs.com/jinfanfu/p/12252145.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!