码迷,mamicode.com
首页 > 其他好文 > 详细

Django之contenttype

时间:2019-06-05 23:53:45      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:import   types   djang   create   title   数据   type   ice   port   

from django.db import models
from django.contrib.contenttypes.fields import GenericForeignKey,GenericRelation
from django.contrib.contenttypes.models import ContentType

class Course(models.Model):
"""
普通课程
"""
title = models.CharField(max_length=32)

# 仅用于反向查找
price_policy_list = GenericRelation("PricePolicy")


class DegreeCourse(models.Model):
"""
学位课程
"""
title =models.CharField(max_length=32)

# 仅用于反向查找
price_policy_list = GenericRelation("PricePolicy")

class PricePolicy(models.Model):
"""
价格策略
"""
price = models.IntegerField()
period = models.IntegerField()

content_type = models.ForeignKey(ContentType, verbose_name="关联的表名称")
object_id = models.IntegerField(verbose_name="关联的表中的数据行ID")
content_obj = GenericForeignKey(‘content_type‘, ‘object_id‘)


#查找价格策略
course = Course.objects.filter(id=1).first()
price_policy = course.price_policy_list.all()

#快速插入数据
obj1 = Course.objects.filter(title=‘Python‘).first()
PricePolicy.objects.create(price=9.9, period=7, content_type=obj1)

Django之contenttype

标签:import   types   djang   create   title   数据   type   ice   port   

原文地址:https://www.cnblogs.com/farion/p/10982492.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!