标签:foreign title 方便 epo django 优惠券 dig 优惠 ref
目录
contentType是Django内置的组件,可以方便我们快速的连表查询。
GenericRelation
只是为了方便查询,不会再表中产生该字段
GenericForeignKey
只是为了方便保存
from django.contrib.contenttypes.models import ContentType
from django.contrib.contenttypes.fields import GenericForeignKey,GenericRelation
class Couser(models.Model):
title = models.CharField(max_length=32)
# 不需要做数据库迁移,这个字段不会在数据表中生成,只用来方便查询
policy = GenericRelation(‘PricePolicy‘, object_id_field=‘course_id‘, content_type_field=‘table_id‘)
class PricePolicy(models.Model):
price = models.DecimalField(max_digits=8, decimal_places=2)
period = models.CharField(max_length=32)
# 强调:如果是外部导入的表,不能带引号
# 表的id
table_id = models.ForeignKey(to=ContentType)
# table_bb = models.ForeignKey(to=‘contenttypes.ContentType‘)
# 课程id
course_id = models.IntegerField()
# PositiveIntegerField()---正整数
# 如果表id 字段名叫:content_type ,课程id字段名叫:object_id ,GenericForeignKey就不需要传参数
# 不需要做数据库迁移,也不会再数据库生成字段,只用来做查询和插入
# 如果保存的时候,只需要传content_obj这个字段,内部自动会保存table_id,course_id
content_obj = GenericForeignKey(‘table_id‘,‘course_id‘)
对于同一种商品可能有很多种价格,例如一个某课程的不同周期的价格是不一样的
对于商品,有很多种优惠券,例如满200减30,满400减80……
标签:foreign title 方便 epo django 优惠券 dig 优惠 ref
原文地址:https://www.cnblogs.com/linagcheng/p/10170346.html