python - django 模型中one-to-many和foreign key不是特别能够理解?
ringa_lee
ringa_lee 2017-04-17 11:44:26
[Python讨论组]

在《The Django Book》中有这么一个实例描述

我们来假定下面的这些概念、字段和关系:

  • 一个作者有姓,有名及email地址。
  • 出版商有名称,地址,所在城市、省,国家,网站。
  • 书籍有书名和出版日期。 它有一个或多个作者(和作者是多对多的关联关系[many-to-many]), 只有一个出版商(和出版商是一对多的关联关系[one-to-many],也被称作外键[foreign key])

它说,书籍出版商的关系是一对多,OneToMany(也叫外键,ForeignKey),这个我就觉得没法理解,在我看来,一本书应该只能属于一个出版商,一个出版商可以出多本书。从字面上理解,应该是ManyToOne

然后对应到models,The Django Book 是这么写的,只在Book 这个模型中注明了外键

class Book(models.Model):
    title = models.CharField(max_length=100)
    authors = models.ManyToManyField(Author)
    publisher = models.ForeignKey(Publisher)  '''here!'''
    publication_date = models.DateField()

但是以之前字面上的理解,我觉得应该是在出版商那个模型上为book增加ForeignKey(OneToMany)啊...


'''这是我的理解,但是应该是错的...'''

class Publisher(models.Model):
    name = models.CharField(max_length=30)
    address = models.CharField(max_length=50)
    city = models.CharField(max_length=60)
    state_province = models.CharField(max_length=30)
    country = models.CharField(max_length=50)
    book = models.ForeignKey(Book) '''here'''
    website = models.URLField()
ringa_lee
ringa_lee

ringa_lee

全部回复(2)
PHPz

应该是翻译上的不准确。

We’ll suppose the following concepts, fields, and relationships:

An author has a first name, a last name and an email address. A publisher has a name, a street address, a city, a state/province, a country, and a Web site. A book has a title and a publication date. It also has one or more authors (a many-to-many relationship with authors) and a single publisher (a one-to-many relationship – aka foreign key – to publishers).

http://www.djangobook.com/en/2.0/chapter05.html

Django 总共定义了三种关系

  • one-to-one
  • one-to-many
  • many-to-many

这里的关系的表述并非单向的。book 和 publisher 之间有一个one-to-many的关系,但是其中的one是publisher,many是book。这种关系的具体实现方法是在book中加入一个foreign key。

迷茫

LZ,Django官方所说的one-to-many只是它的写法而已,不具有指向性。更明确的是外键这种叫法。
如果按照你所理解的具有指向性,那么就要写成one-to-many和many-to-one了。
但要注意:one-to-one和foreignkey(unique=True)两种确实有指向性,至少在调用的时候会有这种差别。

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号