第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何檢查 django 模型 ManyToManyField 是否對(duì)稱,如果對(duì)稱 = False?

如何檢查 django 模型 ManyToManyField 是否對(duì)稱,如果對(duì)稱 = False?

倚天杖 2022-07-19 15:28:55
我正在嘗試在 Django 中創(chuàng)建一個(gè)追隨者系統(tǒng)。follows = models.ManyToManyField('self', related_name='follower', symmetrical=False, null=True, blank=True)由于系統(tǒng)不應(yīng)該是對(duì)稱的,我如何檢查兩個(gè)用戶是否互相關(guān)注?如果可能的話,我想在模型中有一個(gè)函數(shù)。我可能會(huì)在limit_choices_to另一個(gè)領(lǐng)域和其他一些地方使用這個(gè)功能。我最初的想法是添加一個(gè)“朋友”字段并使其對(duì)稱,但這可能會(huì)在以后帶來其他問題。
查看完整描述

1 回答

?
慕尼黑8549860

TA貢獻(xiàn)1818條經(jīng)驗(yàn) 獲得超11個(gè)贊

我沒有找到一個(gè)簡單的解決方案,不需要額外的模型。這是我所做的:


Person(models.Model)如果您有類似的CustomUser(AbstractUser)實(shí)現(xiàn),則不需要?jiǎng)?chuàng)建。否則Person,類在許多情況下都很有用。


count_函數(shù)非常有用,但對(duì)于大多數(shù)用例來說不是必需的。


在里面accounts/models.py我補(bǔ)充說:


RELATIONSHIP_FOLLOWING = 1

RELATIONSHIP_BLOCKED = 2

RELATIONSHIP_STATUSES = (

    (RELATIONSHIP_FOLLOWING, 'Following'),

    (RELATIONSHIP_BLOCKED, 'Blocked'),

)


class Person(models.Model):

     relationships = models.ManyToManyField('self', through='Relationship',

                                           symmetrical=False,

                                           related_name='related_to')


     def get_relationships(self, status):

        return self.relationships.filter(

            to_people__status=status,

            to_people__from_person=self)


    def get_related_to(self, status):

        return self.related_to.filter(

            from_people__status=status,

            from_people__to_person=self)


    def get_following(self):

        return self.get_relationships(RELATIONSHIP_FOLLOWING)


    def get_followers(self):

        return self.get_related_to(RELATIONSHIP_FOLLOWING)


    def count_following(self):

        return len(self.get_relationships(RELATIONSHIP_FOLLOWING))


    def count_followers(self):

        return len(self.get_related_to(RELATIONSHIP_FOLLOWING))


    def get_friends(self):

        return self.relationships.filter(

            to_people__status=RELATIONSHIP_FOLLOWING,

            to_people__from_person=self,

            from_people__status=RELATIONSHIP_FOLLOWING,

            from_people__to_person=self)


    def count_friends(self):

        return len(self.get_friends())


class Relationship(models.Model):

    from_person = models.ForeignKey(Person, related_name='from_people', on_delete=models.CASCADE)

    to_person = models.ForeignKey(Person, related_name='to_people', on_delete=models.CASCADE)

    status = models.IntegerField(choices=RELATIONSHIP_STATUSES)


    def add_relationship(self, person, status):

        relationship, created = Relationship.objects.get_or_create(

            from_person=self,

            to_person=person,

            status=status)

        return relationship


    def remove_relationship(self, person, status):

        Relationship.objects.filter(

            from_person=self,

            to_person=person,

            status=status).delete()

        return


查看完整回答
反對(duì) 回復(fù) 2022-07-19
  • 1 回答
  • 0 關(guān)注
  • 108 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)