标签:boolean 同事 com 生成 ror too lan 管理员 max
应用场景:
#!/usr/bin/env python# -*- coding: utf-8 -*-from __future__ import unicode_literalsfrom django.db import modelsclass Author(models.Model):name = models.CharField(max_length=30)class Publisher(models.Model):name = models.CharField(max_length=50)class Book(models.Model):name = models.CharField(max_length=50)#一本书由一家出版社发布,一个出版社发布多本书。属于一对多关系,用ForeignKey()pub = models.ForeignKey(Publisher)#一本书可以由多个作者合写,一个作者可以写多本书,属于多对多关系,用ManyToManyFieldauthors = models.ManyToMany(Author)
生成结果:一共生成了4张表:
web_author(作者表)web_publisher(出版社表)
web_book_authors(记录book与author多对多关系表。多对多关系要借助第三张表建立关系)
web_book(book表,其中pub_id体现书与出版社之间的一对多关系)
3. 表关系进阶
1. 关联尚未定义的Model
class Book(models.Model):name = models.CharField(max_length = 50)#如果Publisher与Author在Book后面定义,需要使用model 的名称,而不是使用 model 对象本身pub = models.ForeignKey(‘Publisher‘)authors = models.ManyToManyField(‘Author‘)class Publisher(models.Model):name = models.CharField(max_length = 50)class Author(models.Model):name = models.CharField(max_length = 30)
2. Model关联自身
1) Model可以与自身做多对一关系
class People(models.Model):name = models.CharField(max_length = 30)leader = models.ForeignKey(‘self‘, blank=True, null=True)
说明:一个领导有多个下属,一个下属对应一个直接领导,同时领导也是领导的下属。就属于多对一关系,且需要与自身做多对一关系。且注 意,设计这表时要设置blank=True和null=True.2) Model可以与自身做多对多关系
class Person(models.Model):friends = models.ManyToManyField(‘self‘)
用来定义一对一关系。笼统地讲,它与声明了 unique=True 的 ForeignKey 非常相似,不同的是使用反向关联的时候,得到的不是一个对象列表,而是一个单独的对象。在某个 model 扩展自另一个 model 时,这个字段是非常有用的;例如: 多表继承 (Multi-tableinheritance) 就是通过在子 model 中添加一个指向父 model 的一对一关联而实现的。必须给该字段一个参数:被关联的 model 类。工作方式和 ForeignKey 一样,连递归关联 (recursive) 和 延后关联 (lazy) 都一样。 此外,OneToOneField 接受 ForeignKey 可接受的参数,只有一个参数是 OnetoOneField 专有的:OneToOneField.parent_link,如果为 True,并且作用于继承自某个父 model 的子 model 上(这里不能是延后继承,父 model 必须真实存在 ),那么该字段就会变成指向父类实例的引用(或者叫链接),而不是象其他OneToOneField 那样用于扩展父类并继承父类属性。
from django.db import models, transaction, IntegrityErrorclass Place(models.Model):name = models.CharField(max_length=50)address = models.CharField(max_length=80)def __unicode__(self):return u"%s the place" % self.nameclass Restaurant(models.Model):place = models.OneToOneField(Place, primary_key=True)serves_hot_dogs = models.BooleanField()serves_pizza = models.BooleanField()def __unicode__(self):return u"%s the restaurant" % self.place.nameclass Waiter(models.Model):restaurant = models.ForeignKey(Restaurant)name = models.CharField(max_length=50)def __unicode__(self):return u"%s the waiter at %s" % (self.name, self.restaurant)
>>> p1 = Place(name=‘Demon Dogs‘, address=‘944 W. Fullerton‘)>>> p1.save()>>> r = Restaurant(place=p1, serves_hot_dogs=True, serves_pizza=False)>>> r.save()>>> p1.restaurant<Restaurant: Demon Dogs the restaurant>>>> Place.objects.get(restaurant__place__name__startswith="Demon")<Place: Demon Dogs the place>>>> Waiter.objects.filter(restaurant__place__name__startswith="Demon")
Django 06. django框架模型之表关系ForeignKey,ManyToManyField与OneToOneField
标签:boolean 同事 com 生成 ror too lan 管理员 max
原文地址:http://www.cnblogs.com/PythonHomePage/p/7634394.html