在我定义的模型中:
section.py
:
class Section(Document):
section_name = StringField(required = True)
并且,也在模型中:
admin_interface.py
:
class AdminInterface(DynamicDocument):
registered_model = ListField()
然后,在控制器中:
__init__.py
:
from helloworld.model.section import Section
from helloworld.model.admin_interface import AdminInterface
model = [
Section
]
instance = AdminInterface(registered_model = model)
instance.save()
我收到一个错误:
AttributeError: type object 'Section' has no attribute '_data'
有没有什么办法解决这一问题?我真的不知道该怎么办。我想保存 Section 对象,以便稍后我可以使用AdminInterface
.