数据表之间是纵横交叉、相互关联的,laravel的一对一,一对多比较好理解,官网介绍滴很详细了,在此我就不赘述啦,重点我记下多对多的关系
一种常见的关联关系是多对多,即表a的某条记录通过中间表c与表b的多条记录关联,反之亦然。比如一个用户有多种角色,反之一个角色对应多个用户。
为了测试该关联关系,我们沿用官网的用户角色示例:
需要三张数据表:users、roles 和 role_user,role_user 表按照关联模型名的字母顺序命名(这里role_user是中间表),并且包含 user_id 和 role_id两个列。
多对多关联通过编写返回 belongstomany 方法返回结果的方法来定义。废话不说多,直接上数据结构:
1:创建一个角色表roles,并添加一些初始化数据:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
set foreign_key_checks=0; -- ---------------------------- -- table structure for users -- ---------------------------- drop table if exists `users`; create table `users` ( `id` int(10) unsigned not null auto_increment, `name` varchar(255) collate utf8_unicode_ci not null, `email` varchar(255) collate utf8_unicode_ci not null, `password` varchar(60) collate utf8_unicode_ci not null, `remember_token` varchar(100) collate utf8_unicode_ci default null, `created_at` timestamp not null default '0000-00-00 00:00:00' , `updated_at` timestamp not null default '0000-00-00 00:00:00' , primary key (`id`), unique key `users_email_unique` (`email`) using btree ) engine=innodb auto_increment=4 default charset=utf8 collate=utf8_unicode_ci; -- ---------------------------- -- records of users -- ---------------------------- insert into `users` values ( '1' , 'admin' , 'admin@163.com' , '$2y$10$j/yxqscucanrhagzp9g6..tu1md.soljx3m8wrhsudrgat4zesuhc' , 'ilocxtjzjwhrmidlg1ckoyegecwqckuyx1pyaoluzy2ppscqft5ss7lbci7i' , '2016-04-21 16:26:23' , '2016-12-14 09:29:59' ); insert into `users` values ( '2' , 'baidu' , '10940370@qq.com' , '$2y$10$2a5zj4pnj5ucp1dn3nx.5uj/ap7p6o4np2baa55afra8/rti1k6i2' , null, '2016-04-22 06:48:10' , '2016-04-22 06:48:10' ); insert into `users` values ( '3' , 'fantasy' , '1009@qq.com' , '' , null, '2017-06-14 10:38:57' , '2017-06-15 10:39:01' ); |
2:创建一个角色表roles,并添加一些初始化数据:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
set foreign_key_checks=0; -- ---------------------------- -- table structure for roles -- ---------------------------- drop table if exists `roles`; create table `roles` ( `id` int(10) unsigned not null auto_increment, `name` varchar(255) collate utf8_unicode_ci not null, `created_at` timestamp not null default '0000-00-00 00:00:00' , `updated_at` timestamp not null default '0000-00-00 00:00:00' , primary key (`id`) ) engine=innodb auto_increment=7 default charset=utf8 collate=utf8_unicode_ci; -- ---------------------------- -- records of roles -- ---------------------------- insert into `roles` values ( '1' , '超级版主' , '2016-04-21 16:26:23' , '2016-12-14 09:29:59' ); insert into `roles` values ( '2' , '司令' , '2016-04-22 06:48:10' , '2016-04-22 06:48:10' ); insert into `roles` values ( '3' , '军长' , '2017-06-14 10:38:57' , '2017-06-15 10:39:01' ); insert into `roles` values ( '4' , '司长' , '2017-06-07 10:41:41' , '2017-06-15 10:41:51' ); insert into `roles` values ( '5' , '团战' , '2017-06-22 10:41:44' , '2017-06-28 10:41:54' ); insert into `roles` values ( '6' , '小兵' , '2017-06-22 10:41:47' , '2017-06-22 10:41:56' ); |
3:创建一个中间表role_user用于记录users表与roles表的对应关系,并添加一些初始化数据:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
set foreign_key_checks=0; -- ---------------------------- -- table structure for role_user -- ---------------------------- drop table if exists `role_user`; create table `role_user` ( `id` int(10) unsigned not null auto_increment, `user_id` int(11) default null, `role_id` int(11) default null, `created_at` datetime default null, `updated_at` datetime default null, primary key (`id`) ) engine=myisam auto_increment=8 default charset=latin1; -- ---------------------------- -- records of role_user -- ---------------------------- insert into `role_user` values ( '1' , '1' , '2' , '2017-06-07 11:42:13' , '2017-06-21 11:32:16' ); insert into `role_user` values ( '2' , '1' , '3' , '2017-06-07 11:32:13' , '2017-06-07 11:22:13' ); insert into `role_user` values ( '3' , '2' , '4' , '2017-06-07 11:32:13' , '2017-06-07 11:12:13' ); insert into `role_user` values ( '4' , '1' , '5' , '2017-06-07 11:32:13' , '2017-06-07 11:22:13' ); insert into `role_user` values ( '5' , '3' , '6' , '2017-06-07 11:32:13' , '2017-06-07 11:52:13' ); insert into `role_user` values ( '6' , '3' , '2' , '2017-06-07 11:32:13' , '2017-06-07 11:42:13' ); insert into `role_user` values ( '7' , '2' , '2' , '2017-06-07 11:42:13' , '2017-06-07 11:52:13' ); |
注意我们定义中间表的时候没有在结尾加s并且命名规则是按照字母表顺序,将role放在前面,user放在后面,并且用_分隔,这一切都是为了适应eloquent模型关联的默认设置:在定义多对多关联的时候如果没有指定中间表,eloquent默认的中间表使用这种规则拼接出来。
创建一个role模型:
1
2
3
4
5
6
7
8
9
10
11
|
<?php namespace app\models; use illuminate\database\eloquent\model; /** * class role * @package app\models * @mixin \eloquent */ class role extends model { } |
然后我们在 user 模型上定义 roles 方法:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php namespace app\models; use illuminate\database\eloquent\model; /** * class user * @package app\models * @mixin \eloquent */ class user extends model { /** * 用户角色 */ public function roles() { return $this ->belongstomany( 'app\models\role' ); } } |
注:正如我们上面提到的,如果中间表不是role_user,那么需要将中间表作为第二个参数传入belongstomany方法,如果中间表中的字段不是user_id和role_id,这里我们姑且将其命名为$user_id和$role_id,那么需要将$user_id作为第三个参数传入该方法,$role_id作为第四个参数传入该方法,如果关联方法名不是roles还可以将对应的关联方法名作为第五个参数传入该方法。
接下来我们在控制器中编写测试代码:
1
2
3
4
5
6
|
<?php $user = user::find(1); $roles = $user ->roles; echo '用户' . $user ->name. '所拥有的角色:' ; foreach ( $roles as $role ) echo $role ->name. ' ' ; //对应输出为:用户admin所拥有的角色:司令 军长 团战 |
当然,和所有其它关联关系类型一样,你可以调用roles 方法来添加条件约束到关联查询上:
1
|
user::find(1)->roles()->orderby( 'name' )->get(); |
正如前面所提到的,为了确定关联关系连接表的表名,eloquent 以字母顺序连接两个关联模型的名字。不过,你可以重写这种约定 —— 通过传递第二个参数到 belongstomany 方法:
1
|
return $this ->belongstomany( 'app\models\role' , 'user_roles' ); |
除了自定义连接表的表名,你还可以通过传递额外参数到 belongstomany 方法来自定义该表中字段的列名。第三个参数是你定义关联关系模型的外键名称,第四个参数你要连接到的模型的外键名称:
1
|
return $this ->belongstomany( 'app\models\role' , 'user_roles' , 'user_id' , 'role_id' ); |
定义相对的关联关系
要定义与多对多关联相对的关联关系,只需在关联模型中调用一下 belongstomany 方法即可。我们在 role 模型中定义 users 方法:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php namespace app\models; use illuminate\database\eloquent\model; /** * class role * @package app\models * @mixin \eloquent */ class role extends model { /** * 角色用户 */ public function users() { return $this ->belongstomany( 'app\models\user' ); } } |
正如你所看到的,定义的关联关系和与其对应的user 中定义的一模一样,只是前者引用 app\models\role,后者引用app\models\user,由于我们再次使用了 belongstomany 方法,所有的常用表和键自定义选项在定义与多对多相对的关联关系时都是可用的。
测试代码如下:
1
2
3
4
5
|
$role = role::find(2); $users = $role ->users; echo '角色#' . $role ->name. '下面的用户:' ; foreach ( $users as $user ) echo $user ->name. ' ' ; //对应输出为:角色#司令下面的用户:admin fantasy baidu |
正如你看到的,处理多对多关联要求一个中间表。eloquent 提供了一些有用的方法来与这个中间表进行交互,例如,我们假设 user 对象有很多与之关联的 role 对象,访问这些关联关系之后,我们可以使用这些模型上的pivot 属性访问中间表字段:
1
2
3
|
$roles = user::find(1)->roles; foreach ( $roles as $role ) echo $role ->pivot->role_id. '<br>' ; //对应输出为:2 3 5 |
注意我们获取到的每一个 role 模型都被自动赋上了 pivot 属性。该属性包含一个代表中间表的模型,并且可以像其它 eloquent 模型一样使用。
默认情况下,只有模型主键才能用在 pivot 对象上,如果你的 pivot 表包含额外的属性,必须在定义关联关系时进行指定:
1
|
return $this ->belongstomany( 'app\models\role' )->withpivot( 'column1' , 'column2' ); |
比如我们修改role_user表增加一个字段 username 数据如下:
修改模型user:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php namespace app\models; use illuminate\database\eloquent\model; /** * class user * @package app\models * @mixin \eloquent */ class user extends model { /** * 用户角色 */ public function roles() { //return $this->belongstomany('app\models\role'); return $this ->belongstomany( 'app\models\role' )->withpivot( 'username' ); } } |
测试代码如下:
1
2
3
|
$user = user::find(1); foreach ( $user ->roles as $role ) echo $role ->pivot->username; //对应输出为:马特马特2马特3 |
如果你想要你的 pivot 表自动包含created_at 和 updated_at 时间戳,在关联关系定义时使用 withtimestamps 方法:
1
|
return $this ->belongstomany( 'app\models\role' )->withtimestamps(); |
通过中间表字段过滤关联关系
你还可以在定义关联关系的时候使用 wherepivot 和 wherepivotin 方法过滤belongstomany 返回的结果集:
1
2
|
return $this ->belongstomany( 'app\models\role' )->withpivot( 'username' )->wherepivot( 'username' , '马特2' ); //return $this->belongstomany('app\models\role')->wherepivotin('role_id', [1, 2]); |
测试代码如下:
1
2
|
$user = user::find(1); print_r( $user ->roles->toarray()); |
以上对应输出:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
array ( [0] => array ( [id] => 3 [name] => 军长 [created_at] => 2017-06-14 10:38:57 [updated_at] => 2017-06-15 10:39:01 [pivot] => array ( [user_id] => 1 [role_id] => 3 [username] => 马特2 ) ) ) |
如果你想要你的pivot表自动包含created_at和updated_at时间戳,在关联关系定义时使用withtimestamps方法:
1
|
return $this ->belongstomany( 'app\models\role' )->withtimestamps(); |
以上所述是小编给大家介绍的php laravel中的多对多关系实例详解,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
原文链接:http://www.cnblogs.com/phpper/p/6950557.html