Posted in Python onDecember 18, 2018
当有两个表,例如一个学生表,一个班级表,是多对一的关系。
方法1:
c = models.Class.object.get(pk=1) #查询到ID为1的班级 stus = models.Student.object.filter(cls=c) # 查询出来所有班级为c的学生 #stus是多个对象 #可以循环出结果 for stu in stus : print stu.id,stu.name
方法2
stus = models.Student.object.filter(cls__name='1703') #双下划线为跨表查询,查询学生对应的所有cls为1703的学生
方法3
c=models.Class.object.get(pk=1) #获取ID为1的班级 stus=c.Student_set.all #获取所有该班级下的所有学生
html页面获取方法
<td>{{ line.student_set.count }}</td>
以上这篇Django实现一对多表模型的跨表查询方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
Django实现一对多表模型的跨表查询方法
- Author -
盖世英雄Zz声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@