-
导入带点的模块路径并返回路径中姓氏指定的属性/类。如果导入失败,则引发
ImportError
。例如:from django.utils.module_loading import import_string ValidationError = import_string('django.core.exceptions.ValidationError')
相当于:
from django.core.exceptions import ValidationError
本文介绍 django.utils.module_loading.import_string
的用法。
声明
import_string(dotted_path)[source]
相关用法
- Python import__用法及代码示例
- Python importlib.reload用法及代码示例
- Python importlib.util.LazyLoader.factory用法及代码示例
- Python imp.reload用法及代码示例
- Python OpenCV imdecode()用法及代码示例
- Python imaplib.IMAP4.search用法及代码示例
- Python image转binary用法及代码示例
- Python imaplib.IMAP4用法及代码示例
- Python imaplib.IMAP4.store用法及代码示例
- Python itertools.takewhile用法及代码示例
- Python id()用法及代码示例
- Python ipaddress.collapse_addresses用法及代码示例
- Python ipaddress.IPv4Address.reverse_pointer用法及代码示例
- Python io.text_encoding用法及代码示例
- Python string isidentifier()用法及代码示例
- Python numpy irr用法及代码示例
- Python ipaddress.IPv4Address.__format__用法及代码示例
- Python calendar isleap()用法及代码示例
- Python math isclose()用法及代码示例
- Python string isupper()用法及代码示例
- Python itertools.cycle用法及代码示例
- Python itertools.dropwhile用法及代码示例
- Python scipy integrate.trapz用法及代码示例
- Python itertools.repeat用法及代码示例
- Python ipaddress.IPv4Network.supernet用法及代码示例
注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.utils.module_loading.import_string。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。