Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
尝试导入我的模型时出现此错误...
from pages.models import Content ImportError: cannot import name Content
之所以奇怪,是因为百分百存在!!!!我已经做过很多次了。名称“内容”是否有问题,它是保留字?
内容在我的模型中,我的模型在 pages.models 中是 100 !!!
您有循环依赖导入。在pages.models文件中您尝试导入shorturl.models.Link,但同时在shorturl.models您尝试Content从pages.models.
pages.models
shorturl.models.Link
shorturl.models
Content