Обновлено Проблема решена, у меня возникла проблема с дизайном.
Каталог выглядит так:
/view
|-__init__.py
|-quiz.py
|-test.py
|-user.py
И проблема в том, что в quiz.py
Я импортирую class
из test
.и в test.py
я импортирую class
из quiz
.
Обновлено: я изменил import
, но все еще есть AttributeError
Код следующий:
quiz.py
#ignore some imports here
import test
from user import User
class Quiz(Document):
creator = ReferenceField(User, reverse_delete_rule=CASCADE)
info = GenericEmbeddedDocumentField("QuizInfo")
description = StringField(max_length=100)
attachment = GenericEmbeddedDocumentField("QuizAttach")
correctanswer = GenericEmbeddedDocumentField("QuizAnswer")
wronganswer = GenericEmbeddedDocumentField("QuizAnswer")
manualdifficulty= FloatField(min_value=0, max_value=1)
autodifficulty = FloatField(min_value=0, max_value=1)
checkout = GenericEmbeddedDocumentField("QuizCheckcout")
tag = ListField(StringField(max_length=20))
#ignore some codes here
class QuizCheckout(EmbeddedDocument):
time = DateTimeField()
type = IntField()
description = StringField()
test = ReferenceField(test.Test, reverse_delete_rule=CASCADE)
test.py
import quiz
class Test(Document):
createdate = DateTimeField() #Create datetime
description = StringField() #decription of this test
takennumber = IntField() #the number of students who may take this test
quiz = GenericEmbeddedDocumentField('TestQuiz')
class TestQuiz(EmbeddedDocument):
quiz = ListField(ReferenceField(quiz.Quiz, reverse_delete_rule=CASCADE))
#Reference to Quiz, if Quiz is deleted, this reference will be deleted too.
correct = IntField()
#how many students got this right
и ошибка
Exception Type: AttributeError Exception
Value: 'module' object has no attribute 'Quiz'
СначалаЯ подумал, что, может быть, это рекурсивная проблема, но я только обнаружил, что могу переместить import
в функции, чтобы избежать рекурсивного импорта, но здесь нет функций, и я пытаюсь переместить import
в класс, это не работает.
Есть ли способ сохранить эти определения в отдельном файле?