如何使用ManyToManyField上的过滤器获取对象



为什么target_dialogue总是无?

型:

class Dialogue(models.Model):
    name = models.CharField(max_length=30, blank=True)
    is_conference = models.BooleanField(default=False)
    participants = models.ManyToManyField(
        Person,
        related_name='dialogues',
    )
    def __str__(self):
        return self.name or str(self.pk)

鉴于我想获得合适的对话,其中包含参与者字段 2 对象 - 用户和同伴。如果这个对话框不存在,我会创建它:

        target_dialogue = None
        try:
            target_dialogue = Dialogue.objects.get(is_conference=False,participants__in=[user, companion])
        except ObjectDoesNotExist:
            target_dialogue = Dialogue()
            target_dialogue.save()
            target_dialogue.participants.add(user)
            target_dialogue.participants.add(companion)
        finally:
            return render(request, 'dialogues/dialogue.html', {
                'dialogue': target_dialogue,
            })

但target_dialogue总是没有。这是什么原因呢?我应该只解决从 db 获取对话以解决过滤器参数不好的麻烦,但现在我对此表示怀疑。也许别的什么?

request.user不是Person对话中与您有关系的模型的对象。

您必须首先获取 person 对象:

user = Person.objecs.get(user=request.user). # According to your person model

遵循相同的同伴,然后查询:

target_dialogues = Dialogue.objects.filter(is_conference=False,participants__in=[user,companion]

相关内容

  • 没有找到相关文章

最新更新