Fork me on GitHub

Django 使用 内置 content-type

django内置的content-type组件, 记录了项目中所有model元数据的表

可以通过一个ContentType表的id和一个具体表中的id找到任何记录,及先通过ContenType表的id可以得到某个model,再通过model的id得到具体的对象

帮助开发者 连表操作

class Course(models.Model):
    """
    普通课程
    """
    title = models.CharField(max_length=32)
    # 仅用于反向查找
    price_policy_list = GenericRelation("PricePolicy")


        查询的时候 course_obj.price_policy_list.all()

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

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

        查询的时候 degreecourse_obj.price_policy_list.all()



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

    content_type = models.ForeignKey(ContentType, verbose_name='关联的表名称') # 7,8 表名称
    object_id = models.IntegerField(verbose_name='关联的表中的数据行的ID')   #
    # 这个字段并不会生成在数据库中, 帮助你快速实现content_type操作
    content_object = GenericForeignKey('content_type', 'object_id')



        添加数据 只需要添加content_object 对象
	obj = DegreeCourse.objects.filter(title='Python开发').first()
	PricePolicy.objects.create(price='9.9',period='30',content_object=obj)

使用场景:

posted @ 2018-03-09 10:11  派对动物  阅读(166)  评论(0编辑  收藏  举报
Top