博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
contentType
阅读量:5275 次
发布时间:2019-06-14

本文共 3750 字,大约阅读时间需要 12 分钟。

 

需求

现在我们有这样一个需求~我们的商城里有很多的商品~~节日要来了~我们要搞活动~~

那么我们就要设计优惠券~~优惠券都有什么类型呢~~满减的~折扣的~立减的~~

我们对应着我们活动类型~对我们的某类商品设计优惠券~~比如~~

家电是一类商品~~食物是一类商品~那么我们可以设计家电折扣优惠券~~以及食物满减优惠券等~

那么我们看表结构怎么设计~~

# by gaoxin
from
django.db
import
models
 
 
class
Appliance(models.Model):
    
"""
    
家用电器表
    
id name
    
1   冰箱
    
2   电视
    
3   洗衣机
    
"""
    
name
=
models.CharField(max_length
=
64
)
 
 
class
Food(models.Model):
    
"""
    
食物表
    
id name
    
1  面包
    
2  牛奶
    
"""
    
name
=
models.CharField(max_length
=
32
)
 
 
class
Fruit(models.Model):
    
"""
    
水果表
    
id  name
    
1   苹果
    
2   香蕉
    
"""
    
name
=
models.CharField(max_length
=
32
)
 
 
class
Coupon(models.Model):
    
"""
    
优惠券表
    
id  name    appliance_id    food_id     fruit_id
    
1   通用优惠券   null            null        null
    
2   冰箱折扣券   1               null        null
    
3   电视折扣券   2               null        null
    
4   苹果满减卷   null            null        1
    
我每增加一张表就要多增加一个字段
    
"""
    
name
=
models.CharField(max_length
=
32
)
    
appliance
=
models.ForeignKey(to
=
"Appliance"
, null
=
True
, blank
=
True
)
    
food
=
models.ForeignKey(to
=
"Food"
, null
=
True
, blank
=
True
)
    
fruit
=
models.ForeignKey(to
=
"Fruit"
, null
=
True
, blank
=
True
)<br>
# 实际上我们商品的种类会特别的多,导致我们这张表外键越来越多

遇到这种一张表要跟多张表进行外键关联的时候~我们Django提供了ContentType组件~

ContentType组件

ContentType是Django的内置的一个应用,可以追踪项目中所有的APP和model的对应关系,并记录在ContentType表中。

当我们的项目做数据迁移后,会有很多django自带的表,其中就有django_content_type表,我们可以去看下~~~

 

ContentType组件应用:

  -- 在model中定义ForeignKey字段,并关联到ContentType表,通常这个字段命名为content-type

  -- 在model中定义PositiveIntergerField字段, 用来存储关联表中的主键,通常我们用object_id

  -- 在model中定义GenericForeignKey字段,传入上面两个字段的名字

  --  方便反向查询可以定义GenericRelation字段

代码如下:

  

# by gaoxin
from
django.db
import
models
from
django.contrib.contenttypes.models
import
ContentType
from
django.contrib.contenttypes.fields
import
GenericForeignKey, GenericRelation
 
 
class
Appliance(models.Model):
    
"""
    
家用电器表
    
id name
    
1   冰箱
    
2   电视
    
3   洗衣机
    
"""
    
name
=
models.CharField(max_length
=
64
)
    
coupons
=
GenericRelation(to
=
"Coupon"
)
 
 
class
Food(models.Model):
    
"""
    
食物表
    
id name
    
1  面包
    
2  牛奶
    
"""
    
name
=
models.CharField(max_length
=
32
)
 
 
class
Fruit(models.Model):
    
"""
    
水果表
    
id  name
    
1   苹果
    
2   香蕉
    
"""
    
name
=
models.CharField(max_length
=
32
)
 
 
class
Coupon(models.Model):
    
"""
    
优惠券表
    
id  name    appliance_id    food_id     fruit_id
    
1   通用优惠券   null            null        null
    
2   冰箱折扣券   1               null        null
    
3   电视折扣券   2               null        null
    
4   苹果满减卷   null            null        1
    
我每增加一张表就要多增加一个字段
    
"""
    
name
=
models.CharField(max_length
=
32
)
    
# appliance = models.ForeignKey(to="Appliance", null=True, blank=True)
    
# food = models.ForeignKey(to="Food", null=True, blank=True)
    
# fruit = models.ForeignKey(to="Fruit", null=True, blank=True)
    
# 第一步
    
content_type
=
models.ForeignKey(to
=
ContentType)
    
# 第二步
    
object_id
=
models.PositiveIntegerField()
    
# 第三步
    
content_object
=
GenericForeignKey(
'content_type'
,
'object_id'
)  

数据迁移后~添加数据~我们看下增删改查的操作~~

基本的使用~

from
django.http
import
HttpResponse
from
rest_framework.views
import
APIView
from
rest_framework.response
import
Response
from
django.contrib.contenttypes.models
import
ContentType
from
.models
import
Appliance, Coupon
 
# Create your views here.
 
 
class
Test(APIView):
 
    
def
get(
self
, request):
        
# 通过ContentType获得表名
        
content
=
ContentType.objects.
filter
(app_label
=
"app01"
, model
=
"appliance"
).first()
        
# 获得表model对象 相当于models.Applicance
        
model_class
=
content.model_class()
        
ret
=
model_class.objects.
all
()
 
        
# 为海尔冰箱创建一条优惠记录
        
ice_box
=
Appliance.objects.
filter
(
id
=
1
).first()
        
Coupon.objects.create(name
=
"海尔冰箱折扣券"
, content_object
=
ice_box)
 
        
# 查询优惠券id=1绑定了哪个商品
        
coupon_obj
=
Coupon.objects.
filter
(
id
=
1
).first()
        
goods_obj
=
coupon_obj.content_object
        
print
(goods_obj.name)
 
        
# 查询海尔冰箱的所有优惠券 id=1
        
# 我们定义了反向查询
        
results
=
ice_box.coupons.
all
()
        
print
(results[
0
].name)
 
        
# 如果没定义反向查询
        
content
=
ContentType.objects.
filter
(app_label
=
"app01"
, model
=
"appliance"
).first()
        
result
=
Coupon.objects.
filter
(content_type
=
content, object_id
=
1
).
all
()
        
print
(result[
0
].name)
        
return
HttpResponse(ret)

转载于:https://www.cnblogs.com/dalaoban/p/9944781.html

你可能感兴趣的文章
PLSQL Developer使用技巧
查看>>
Android 设置界面的圆角选项
查看>>
百度地图api服务端根据经纬度得到地址
查看>>
使用yum更新时不升级Linux内核的方法
查看>>
sqlserver计算时间差DATEDIFF 函数
查看>>
51nod1307(暴力树剖/二分&dfs/并查集)
查看>>
用户体验分析: 以 “南通市图书馆微信公众号” 为例
查看>>
linux的管道 |和grep命令以及一些其他命令(diff,echo,cat,date,time,wc,which,whereis,gzip,zcat,unzip,sort)...
查看>>
Nginx和PHP-FPM的启动、重启、停止脚本分享
查看>>
cookie 和session 的区别详解
查看>>
Vuex-状态管理模式
查看>>
浮点数运算的精度问题:以js语言为例
查看>>
数据挖掘领域十大经典算法
查看>>
【C语言】09-字符串
查看>>
数据库连接及线程池
查看>>
解决android应用程序适用新老android系统版本方法
查看>>
Oracle SQL语句执行过程
查看>>
Oracle 中的SID是什么意思?有什么作用?
查看>>
关于http协议
查看>>
jquery validation remote进行唯一性验证时只使用自定义参数,不使用默认参数
查看>>