【发布时间】:2019-11-10 23:51:30
【问题描述】:
使用表单,在第一次获得我要添加的问题的查询集后,我试图将项目添加到 Quiz 对象的多线程字段 questions。我保存了 ModelForm,但是当我添加项目时,我得到了一个 AttributError: 'function' object has no attribute 'questions'
以前我可以在模型中使用保存方法create a Quiz object with 3 random questions。但是,我看不到仅使用模型从特定查询集中添加 3 个问题的方法
views.py
def choose(request, obj_id):
"""Get the id of the LearnObject of interest"""
"""Filter the questions and pick 3 random Qs"""
my_qs = Question.objects.filter(learnobject_id=obj_id)
my_qs = my_qs.order_by('?')[0:3]
if request.method == 'POST':
form = QuizForm(request.POST)
if form.is_valid():
new_quiz = form.save
for item in my_qs:
new_quiz.questions.add(item)
new_quiz.save()
return HttpResponseRedirect('/quizlet/quiz-list')
else:
form = QuizForm()
return render(request, 'quizlet/quiz_form.html', {'form': form})
和models.py
class LearnObject(models.Model):
"""model for the learning objective"""
code = models.CharField(max_length=12)
desc = models.TextField()
class Question(models.Model):
"""model for the questions."""
name = models.CharField(max_length=12)
learnobject = models.ForeignKey(
LearnObject, on_delete=models.CASCADE,
)
q_text = models.TextField()
answer = models.CharField(max_length=12)
class Quiz(models.Model):
"""quiz which will have three questions."""
name = models.CharField(max_length=12)
questions = models.ManyToManyField(Question)
completed = models.DateTimeField(auto_now_add=True)
my_answer = models.CharField(max_length=12)
class QuizForm(ModelForm):
"""test out form for many2many"""
class Meta:
model = Quiz
fields = ['name', 'my_answer']
错误发生在new_quiz.questions.add(item) 行。我不明白这一点,因为Quiz 的模型有一个字段questions,并且对象(我认为)已经在第一个new_quiz = form.save() 上创建了
【问题讨论】: