场景
用户之间相互关注,记录这种关系的是followers表(follower_id 发起关注的人 followed_id被关注的人)
现在的多对多的关系就不再是传统的三张表的关系了, 这种情况 多对多关系应该怎么声明呢"_blank" href="https://laravel.com/docs/5.6/eloquent-relationships#many-to-many">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'); }
以上这篇浅谈laravel5.5 belongsToMany自身的正确用法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
稳了!魔兽国服回归的3条重磅消息!官宣时间再确认!
昨天有一位朋友在大神群里分享,自己亚服账号被封号之后居然弹出了国服的封号信息对话框。
这里面让他访问的是一个国服的战网网址,com.cn和后面的zh都非常明白地表明这就是国服战网。
而他在复制这个网址并且进行登录之后,确实是网易的网址,也就是我们熟悉的停服之后国服发布的暴雪游戏产品运营到期开放退款的说明。这是一件比较奇怪的事情,因为以前都没有出现这样的情况,现在突然提示跳转到国服战网的网址,是不是说明了简体中文客户端已经开始进行更新了呢?