需求:數據庫
先提供一個場景,網上商城購物時,會有各類各樣的優惠券,好比通用優惠券,滿減券,或者是僅限特定品類的優惠券。咱們以往的方式是:在數據庫中,能夠經過外鍵將 優惠券和不一樣品類的商品表關聯起來:django
from django.db import models class Electrics(models.Model): """ id name 1 日立冰箱 2 三星電視 3 小天鵝洗衣機 """ name = models.CharField(max_length=32) class Foods(models.Model): """ id name 1 麪包 2 烤鴨 """ name = models.CharField(max_length=32) class Clothes(models.Model): name = models.CharField(max_length=32) class Coupon(models.Model): """ id name Electrics Foods Clothes more... 1 通用優惠券 null null null 2 冰箱滿減券 2 null null 3 麪包狂歡節 null 1 null """ name = models.CharField(max_length=32) electric_obj = models.ForeignKey(to='Electrics', null=True) food_obj = models.ForeignKey(to='Foods', null=True) cloth_obj = models.ForeignKey(to='Clothes', null=True)
將全部的商品都關聯到Coupon這張表中,若是是通用優惠券,那麼全部的ForeignKey對應字段的值爲null,若是僅限某些商品,那麼對應商品ForeignKey記錄該商品的id,不相關的記錄爲null。app
可是這樣作是有問題的:ide
解決方法:spa
經過使用contenttypes 應用中提供的特殊字段GenericForeignKey,咱們能夠很好的解決這個問題。只須要如下三步:code
爲了更方便查詢商品的優惠券,咱們還能夠在商品類中經過GenericRelation字段定義反向關係。對象
from django.db import models from django.contrib.contenttypes.models import ContentType from django.contrib.contenttypes.fields import GenericForeignKey class Electrics(models.Model): name = models.CharField(max_length=32) coupons = GenericRelation(to='Coupon') # 用於反向查詢,不會生成表字段 def __str__(self): return self.name class Foods(models.Model): name = models.CharField(max_length=32) coupons = GenericRelation(to='Coupon') def __str__(self): return self.name class Clothes(models.Model): name = models.CharField(max_length=32) coupons = GenericRelation(to='Coupon') def __str__(self): return self.name class Coupon(models.Model): name = models.CharField(max_length=32) content_type = models.ForeignKey(to=ContentType) # step 1 object_id = models.PositiveIntegerField() # step 2 content_object = GenericForeignKey('content_type', 'object_id') # step 3 def __str__(self): return self.name
1 from django.shortcuts import render, HttpResponse 2 from app01 import models 3 from django.contrib.contenttypes.models import ContentType 4 5 6 def test(request): 7 if request.method == 'GET': 8 # ContentType表對象有model_class() 方法,取到對應model 9 content = ContentType.objects.filter(app_label='app01', model='electrics').first() # 表名小寫 10 cloth_class = content.model_class() # cloth_class 就至關於models.Electrics 11 res = cloth_class.objects.all() 12 print(res) 13 14 # 爲三星電視(id=2)建立一條優惠記錄 15 s_tv = models.Electrics.objects.filter(id=2).first() 16 models.Coupon.objects.create(name='電視優惠券', content_object=s_tv) 17 18 # 查詢優惠券(id=1)綁定了哪些商品 19 coupon_obj = models.Coupon.objects.filter(id=1).first() 20 prod = coupon_obj.content_object 21 print(prod) 22 23 # 查詢三星電視(id=2)的全部優惠券 24 res = s_tv.coupons.all() 25 print(res) 26 27 # 查詢obj的全部優惠券:若是沒有定義反向查詢字段,經過以下方式: 28 content = ContentType.objects.filter(app_label='app01', model='model_name').first() 29 res = models.OftenAskedQuestion.objects.filter(content_type=content, object_id=obj.pk).all() 30 31 return HttpResponse('....')
總結:blog
當一張表和多個表FK關聯,而且多個FK中只能選擇其中一個或其中n個時,能夠利用contenttypes app,只需定義三個字段就搞定!經常使用的場景:一個商品的多種優惠券,一門課程按照週期的多種價格、一門課程各自的常見問題等等。it