ImportError:模型 A 引用模型 B,模型 B 引用模型 A
我认为这更像是一个Python问题而不是Django问题。
但基本上我在模型 A:
from myproject.modelb.models import ModelB
和模型 B:
from myproject.modela.models import ModelA
结果:
无法导入名称 ModelA
我是否在做一些禁止的事情?谢谢
I think this is more a python question than Django.
But basically I'm doing at Model A:
from myproject.modelb.models import ModelB
and at Model B:
from myproject.modela.models import ModelA
Result:
cannot import name ModelA
Am I doing something forbidden? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Python 模块是通过在新的命名空间中从上到下执行来导入的。当模块 A 导入模块 B 时,A.py 的计算将暂停,直到加载模块 B。然后,当模块 B 导入模块 A 时,它会获取模块 A 的部分初始化命名空间 - 在您的情况下,它缺少
ModelA
类,因为导入myproject.modelb.models 发生在该类的定义之前。
在 Django 中,您可以通过按名称而不是按类对象引用模型来解决此问题。因此,不要说
您会使用(不导入):
A Python module is imported by executing it top to bottom in a new namespace. When module A imports module B, the evaluation of A.py is paused until module B is loaded. When module B then imports module A, it gets the partly-initialized namespace of module A -- in your case, it lacks the
ModelA
class because the import ofmyproject.modelb.models
happens before the definition of that class.In Django you can fix this by referring to a model by name instead of by class object. So, instead of saying
you would use (without the import):
相互导入通常意味着您设计的模型不正确。
当A依赖于B时,你不应该让B也依赖于A。
将B分成两部分。
B1 - 取决于 A。B2
- 不取决于 A。A
取决于 B1。 B1 取决于 B2。圆度已去除。
Mutual imports usually mean you've designed your models incorrectly.
When A depends on B, you should not have B also depending on A.
Break B into two parts.
B1 - depends on A.
B2 - does not depend on A.
A depends on B1. B1 depends on B2. Circularity removed.