赞
踩
解决方案:
在项目根目录新建import_func.py
,并输入一下内容:
import os
import re
import sys
def import_all():
sys_file = []
wd = os.getcwd()
sys_file.append(wd)
for root, dirs, files in os.walk(wd):
for dir in dirs:
dir_path = os.path.join(root, dir)
if dir_path[-1] !='_':
sys_file.append(dir_path)
sys.path.append(sys_file)
import_all()
然后在工程里引用这个方法。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。