django中是否有一个字段可以有多个外键字段?

发布于 2024-11-13 07:41:13 字数 467 浏览 3 评论 0原文

django中是否有一个字段可以有多个外键字段?我有以下代码:

from django.db import models
from django.auth.models import *
class Wish(Model):
    name = CharField(max_length=128)
    cost = IntegerField()
    person = ForeignKey(Person)
    date = DateField('Date Wished')
    comments = CharField(max_length=1024)
    def __unicode__(self):
        return name

class Person(Model):
    user = ForeignKey(User)
    friends =...  # multiple foriegn keys of itself

Is there a field in django that can have multiple foreign key fields? I have the following code:

from django.db import models
from django.auth.models import *
class Wish(Model):
    name = CharField(max_length=128)
    cost = IntegerField()
    person = ForeignKey(Person)
    date = DateField('Date Wished')
    comments = CharField(max_length=1024)
    def __unicode__(self):
        return name

class Person(Model):
    user = ForeignKey(User)
    friends =...  # multiple foriegn keys of itself

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

好多鱼好多余 2024-11-20 07:41:13

尝试使用 ManyToMany 字段

请注意,同一模型的 ManyToMany 被假定为 对称 - 如果 A 是 B 的朋友,那么 B 也将是 A 的朋友。您可以指定对称 = False 来避免这种情况。

Try using the ManyToMany field.

Note that ManyToMany to the same model, is assumed to be symmetrical - if Person A is a friend of Person B, then Person B will also be a friend of Person A. You can specify symmetrical=False to avoid that.

不再让梦枯萎 2024-11-20 07:41:13

我认为你想要一个 ManyToMany 字段。在这个例子中,你会说一个人可以与许多其他人成为朋友,反之亦然。

Django 的 ManyToManyField:

https://docs。 djangoproject.com/en/dev/ref/models/fields/#django.db.models.ManyToManyField

一般ManyToMany:

http://en.wikipedia.org/wiki/Many-to-many_(data_model) )

I think you want a ManyToMany field. In this example you would be saying that a person can be friends with many other person's/people, and visa-versa.

Django's ManyToManyField:

https://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.ManyToManyField

General ManyToMany:

http://en.wikipedia.org/wiki/Many-to-many_(data_model)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文