Django ManyToManyField 跨越中间表查询的方法
程序员文章站
2023-10-28 09:30:10
1、在 django 表中用到了 manytomany 生成了中间表 pyclub_article_column
from django.db import mo...
1、在 django 表中用到了 manytomany 生成了中间表 pyclub_article_column
from django.db import models # create your models here. class column(models.model): id = models.autofield(u'序号',primary_key=true,auto_created=true) name = models.charfield(u'名字',max_length=100) published = models.datefield(u'发布时间',auto_now_add=true) def __str__(self): return self.name class meta: verbose_name = '栏目' verbose_name_plural = '栏目列表' ordering = ['id'] # 按照哪个栏目排序 class article(models.model): id = models.autofield(u'序号',primary_key=true,auto_created=true) title = models.charfield(u'标题',max_length=100,default='') content = models.textfield(u'内容',default='') column = models.manytomanyfield(column,verbose_name='归属栏目') published = models.datefield(u'发布时间',auto_now_add=true,null=true) def __str__(self): return self.title class meta: verbose_name = '文章' verbose_name_plural = '文章列表' ordering = ['id'] # 按照哪个文章排序
2、生成了中间表 pyclub_article_column
+-----+------------+-----------+ | id | article_id | column_id | +-----+------------+-----------+ | 370 | 411 | 146 | | 371 | 412 | 146 | | 372 | 413 | 165 | | 373 | 414 | 158 | | 374 | 415 | 151 |
3、我想通过column_id 获得 对应栏目列表中的所有数据列表,原先一直在怎么使用中间表这个问题上,一直搞不会,现在明白了,原来 结果集 column本身也可以作对象,那么,问题简单了
list_info = article.objects.filter(column=id)
虽然article表中,没有column,但在django model.py通过many to many 已经建立起了对应关系,所以在view.py中,通过article objects时,可以直接使用filter进行类别查询。
以上这篇django manytomanyfield 跨越中间表查询的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。