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

django外键以及主表和子表的相互查询

时间:2019-01-29 18:02:09      阅读:438      评论:0      收藏:0      [点我收藏+]

标签:detail   字段   max   mod   art   mode   .net   port   https   

 

Django的外键使用

from django.db import models

# Create your models here.
class Category(models.Model):
    name = models.CharField(max_length=100)

class Article(models.Model):
    title = models.CharField(max_length=100)
    content = models.TextField()
    # 是由Category影响Article
    category = models.ForeignKey(Category,on_delete=models.CASCADE,related_name="article_category")

 

https://blog.csdn.net/xujin0/article/details/83552349

通过主表查询子表、通过子表查询主表、字段related_name的作用:

https://blog.csdn.net/hpu_yly_bj/article/details/78939748

django外键以及主表和子表的相互查询

标签:detail   字段   max   mod   art   mode   .net   port   https   

原文地址:https://www.cnblogs.com/shengulong/p/10334175.html

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