目录层次结构:
---src
---WebService
---Model
---BaseModel.py
---ServiceAttribute.py
---__init__.py
---ServiceImpl
---Test.py
---__init__.py
---__init__.py
---__init__.py
这是我的项目的构造,我想导入Model/ServiceAttribute.py
to ServiceImpl/Test.py
,我执行以下操作:
from src.WebService.Model.ServiceAttribute import ServiceAttribute
但有人告诉我importError
,我的代码中有一个:
src.WebService.Model.ServiceAttribute.ServiceAttrbute is not a module.
如何解决这个问题呢?需要你的帮助!