-
導入帶點的模塊路徑並返回路徑中姓氏指定的屬性/類。如果導入失敗,則引發
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。