- 论坛徽章:
- 0
|
俺建了一个包目录结构如下:
src\db
src\db\model
src\db\model\model1.py
src\db\model\model2.py
src\controllor
src\controllor\loadmodeltest.py
loadmodeltest.py代码:- #coding:utf-8
- from db.model.model2 import getallmethod
- getallmethod('../db/model')
复制代码 model1.py代码:- #coding:utf-8
- def m_m1_method1():
- pass
- def m_m1_method2():
- pass
复制代码 model2.py代码:- #coding:utf-8
- def m_m2_method1():
- pass
- def m_m2_method2():
- pass
- def getallmethod(path):
- """
- 取得当前目录下的所有文件中指定的所有方法
- """
- import os
- model = [m[:-3] for m in os.listdir(path) if m[-3:]=='.py' and m[:1] !='_']
- methodlist=[]
- for item in model:
- m = __import__(item)
- methodlist += [method for method in dir(m) if callable(getattr(m, method)) and method[:2]=="m_"]
- print methodlist
- if __name__ == "__main__":
- getallmethod('../model')
复制代码 model2.getallmethod()这个方法,只在当前目录调用用效。
当前目录调用结果如下:
['m_m1_method1', 'm_m1_method2', 'm_m2_method1', 'm_m2_method2']
如在其它目录调用就会出现__import__()错误。
比如在controllor.loadmodeltest中调用就会出错,
哪位老大帮忙看看。谢谢了。 |
|