时间:2021-05-18
场景
用户之间相互关注,记录这种关系的是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'); }以上这篇浅谈laravel5.5 belongsToMany自身的正确用法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Laravel5.5将提供一个全新的自定义验证规则的对象,以作为原来的Validator::extend方法的替代。Laravel5.5将提供一个全新的自定义验
前言期待已久的laravel5.5很快将为大家呈现,本文将给大家详细介绍关于Laravel5.5新特性之友好报错及展示的相关内容,分享出来供大家参考学习,话不多
测试使用的是Laravel5.5版本。安装composerrequiretymon/jwt-auth=1.0.0-rc.5配置生成配置phpartisanven
前言在之前的Laravel版本中,安装包通常需要几个步骤,例如添加服务提供器到app配置文件并注册相关的facades。现在,从Laravel5.5开始,Lar
基于Laravel5.5在项目实施过程中,需要对从接口中获取的数据(或者通过搜索工具查询出来的数据)进行分页一、创建手动分页在laravel自带的分页中,一般是