Mam:
answers = Answer.objects.filter(id__in=[answer.id for answer in answer_set.answers.all()])
potem później:
for i in range(len(answers)):
# iterate through all existing QuestionAnswer objects
for existing_question_answer in existing_question_answers:
# if an answer is already associated, remove it from the
# list of answers to save
if answers[i].id == existing_question_answer.answer.id:
answers.remove(answers[i]) # doesn't work
existing_question_answers.remove(existing_question_answer)
Pojawia się błąd:
'QuerySet' object has no attribute 'remove'
Próbowałem przerobić QuerySet na standardowy zestaw lub listę. Nic nie działa.
Jak mogę usunąć element z QuerySet, aby nie usuwał go z bazy danych i nie zwracał nowego zestawu QuerySet (ponieważ jest w pętli, która nie działa)?