我有最新版本的Django,django-toolbox和Python。 我使用MongoDB作为DB和PyMongo。 我的问题是: “没有以django.utils.importlib命名的模块导入import_module”
这是因为我想使用嵌入式模型,特别是子对象列表(一对多关系),因为您可以看到in the tutorial。 有没有办法解决这个问题或以另一种方式建模子对象列表? 感谢。
编辑:我切换到Django 1.8,但现在我的错误是
"name basestring is not defined"
答案 0 :(得分:0)
导入
from django.utils.importlib import import_module
应改为
from importlib import import_module
我看到你打开了GitHub issue 78。在修复之前,你可以使用Django 1.8。