这篇文章主要介绍了laravel hasManyThrough怎么用,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。 &n
这篇文章主要介绍了laravel hasManyThrough怎么用,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
第一种情况,我称之为传导关联表(简单模式)
国家有很多用户,用户有很多帖子
countries id - integer name - stringusers id - integer country_id - integer name - stringposts id - integer user_id - integer title - string
查询某个国家的所有帖子,怎么实现?
countries为本表,posts为要输出的目标表,users为中间表
return $this->hasManyThrough('App\Post', 'App\User', 'country_id', 'user_id');
第二种情况,有中间表情况(纯中间表)
exam_paper(试卷表)idnameexam_paper_question(试卷与试题中间表)idexam_paper_idquestion_idexam_question(试题表)idname
我们要通过exam_paper的id查询question
return $this->hasManyThrough('exam_question', 'exam_paper_question', 'exam_paper_id', 'id','id','question_id');
// 参数1 目标表类名exam_question,// 参数2 枢纽表类名exam_paper_question,// 参数3 枢纽表中和当前表关联的字段名'exam_paper_question.exam_paper_id',// 参数4 目标表和枢纽表关联的字段名'exam_question.id',// 参数5 当前表中和枢纽表关联的字段名'exam_paper.id',// 参数6 枢纽表和目标表关联的字段名'exam_paper_question.question_id');
如果把当前表记作A,目标表记作B,中间表记作C,6个参数记作(B,C,CA,BC,AC,CB)
感谢你能够认真阅读完这篇文章,希望小编分享的“laravel hasManyThrough怎么用”这篇文章对大家有帮助,同时也希望大家多多支持编程网,关注编程网精选频道,更多相关知识等着你来学习!
--结束END--
本文标题: laravel hasManyThrough怎么用
本文链接: https://lsjlt.com/news/321119.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0