浅谈laravel5.5 belongsToMany自身的正确用法
发布:smiling 来源: PHP粉丝网 添加日期:2022-01-08 15:06:59 浏览: 评论:0
今天小编就为大家分享一篇浅谈laravel5.5 belongsToMany自身的正确用法,具有很好的参考价值,希望对大家有所帮助,一起跟随小编过来看看吧。
场景
用户之间相互关注,记录这种关系的是followers表(follower_id 发起关注的人 followed_id被关注的人)
现在的多对多的关系就不再是传统的三张表的关系了, 这种情况 多对多关系应该怎么声明呢?
分析
laravel或者其他框架多对多的关系 一般都是由Model1 Model2 Model1_Model2(声明两者关系的表)来组成,但是上面的场景 却是只有两张表,这时候就要研究下官方文档了; 当然是支持的
参考资料
https://laravel.com/docs/5.6/eloquent-relationships#many-to-many
In addition to customizing the name of the joining table, you may also customize the column names of the keys on the table by passing additional arguments to the belongsToMany method. The third argument is the foreign key name of the model on which you are defining the relationship, while the fourth argument is the foreign key name of the model that you are joining to:
belongsToMany方法传递的参数是可以定制的 以达到个性化的需求,
第一个参数是 第二个Model
第二个参数是 关系表名
第三个参数是 第一个Model在关系表中的外键ID
第四个参数是 第二个Model在关系表中的外键ID
解决
经过分析
1. 第一个Model是User 第一个Model也是User
2. 关系表名是 'followers'
- /**
- * 关注当前用户的
- * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
- */
- public function followers()
- {
- return $this->belongsToMany(self::class, 'followers', 'followed_id','follower_id')->withTimestamps()
- ->withTimestamps();
- }
- /**
- * 被当前用户关注的用户
- */
- public function followed()
- {
- return $this->belongsToMany(self::class, 'followers', 'follower_id', 'followed_id');
- }
Tags: laravel5 5 belongsToMany
相关文章
- ·如何在laravel 5中使用DB事务?(2020-01-31)
- ·Laravel5中contracts详解(2021-05-15)
- ·Laravel 5 学习笔记(2021-05-15)
- ·Laravel 5.5官方推荐的Nginx配置学习教程(2021-08-11)
- ·laravel5 使用try catch的实例详解(2021-08-21)
- ·Laravel5.5中利用Passport实现Auth认证的方法(2021-08-22)
- ·Laravel 5.5基于内置的Auth模块实现前后台登陆详解(2021-08-25)
- ·Laravel5.2使用Captcha生成验证码实现登录(session巨坑)(2021-08-26)
- ·Laravel 5.4.36中session没有保存成功问题的解决(2021-09-03)
- ·在Laravel5.6中使用Swoole的协程数据库查询(2021-10-01)
- ·详细Laravel5.5执行表迁移命令出现表为空的解决方案(2021-10-10)
- ·Laravel5.5以下版本中如何自定义日志行为详解(2021-10-20)
- ·Laravel5框架添加自定义辅助函数的方法(2021-10-20)
- ·laravel5使用freetds连接sql server的方法(2021-11-02)
- ·Laravel5.4框架使用socialite实现github登录的方法(2021-11-13)
- ·Laravel5.7框架安装与使用学习笔记图文详解(2021-11-14)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)