gpt4 book ai didi

Laravel5.1 框架关联模型之后操作实例分析

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章Laravel5.1 框架关联模型之后操作实例分析由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

本文实例讲述了Laravel5.1 框架关联模型之后操作。分享给大家供大家参考,具体如下:

之前写过关于模型关联的笔记,但是模型关联好后的一些使用没有介绍,今天补上 。

1 写入关联模型

1.1 使用Save方法(一对多)

我们准备了两个模型:Post和Comment。 它们的关系是一对多关系。现在我们要创建新的Comment到Post:

?
1
2
3
4
5
6
7
8
public function getIndex()
{
   // 创建一个comment模型
   $comment = new Comment([ 'title' => 'comment1' , 'content' => 'content1' ]);
   // 取到post模型
   $post = Post::findOrFail(1);
   $post ->comments()->save( $comment );
}

这样创建呢 Comment的post_id 列会自动填充.

我们还可以批量的添加下属模型,相当方便~:

?
1
2
3
4
5
6
7
8
9
public function getIndex()
{
   // 创建一个comment模型
   $comment2 = new Comment([ 'title' => 'comment2' , 'content' => 'content2' ]);
   $comment3 = new Comment([ 'title' => 'comment3' , 'content' => 'content3' ]);
   // 取到post模型
   $post = Post::findOrFail(1);
   $post ->comments()->saveMany([ $comment2 , $comment3 ]);
}

1.2 使用Save方法(多对多)

准备一个Tag模型,它和Post模型是多对多的关系,别忘了生成中间表哦:

?
1
2
3
4
5
6
7
8
9
10
11
public function getIndex()
{
   // 创建文章
   $post = new Post();
   $post ->title = 'Laravel Model' ;
   $post ->sub_title = '模型的详细使用' ;
   $post ->content = 'content...' ;
   // 添加到Tag
   $tag = Tag::findOrFail(1);
   $tag ->posts()->save( $post );
}

↑ 我们无需管中间表,Laravel会自动为我们填充中间表的关联属性, 。

多对多的save方法中是允许我们传入第二个参数的。第二个参数是中间表的属性数组:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
public function getIndex()
{
   // 创建文章
   $post = new Post();
   $post ->title = 'Laravel Model' ;
   $post ->sub_title = '模型的详细使用' ;
   $post ->content = 'content...' ;
   // 添加到Tag
   $tag = Tag::findOrFail(1);
   // 当创建时需要填充中间表的额外列时,可以传递第二个参数。
   // 这里我们的中间表有个expires列,添加关联时可以同时设置。
   $tag ->posts()->save( $post , [ 'expires' => true]);
}

1.3 使用Create方法

Create方法是一种批量填充模式 所以记得在Model中设置白/黑名单,它和save的唯一区别就是 只能传递数组、不能将一个模型实例传入.

?
1
2
3
4
5
6
7
8
9
10
public function getIndex()
{
   $tag = Tag::findOrFail(1);
   // create方法同样也可以接受第二个参数。
   $tag ->posts()->create([
     'title' => 'Laravel Model' ,
     'sub_title' => 'Laravel 模型关联的使用' ,
     'content' => 'content...'
   ], [ 'expires' => true]);
}

2 更新关联关系

2.1 更新一个关系(除多对多适用)

重要的事情需要重复一遍:associate方法只不对多对多关系适用。而且使用时要用下方模型 调用associate方法,将下方模型更新到新的上方模型.

?
1
2
3
4
5
6
7
public function getIndex()
{
   $post = Post::findOrFail(1);
   $comment = Comment::findOrFail(1);
   $comment ->post()->associate( $post );
   $comment ->save();
}

2.2 移除一个关系(除多对多适用)

重要的事情需要重复一遍:dissociate方法只不对多对多关系适用。而且使用时要用下方模型 调用dissociate方法,将下方模型从上方模型的关联中移除。此外此方法执行后会将下方模型的外键id至为0.

?
1
2
3
4
5
6
7
public function getIndex()
{
   $post = Post::findOrFail(1);
   $comment = Comment::findOrFail(1);
   $comment ->post()->dissociate( $post );
   $comment ->save();
}

2.3 追加一个关系(多对多关系)

一定要看注释,一定要看注释,一定要看注释,注释解释的很清楚,你可能心中有疑问 这个追加关系和之间创建关系有什么区别?你可能忽视了一个细节:创建添加时 是新建一个模型后加入关联,而attach方法是:追加一个已经存在的模型进行关联.

?
1
2
3
4
5
6
7
8
9
public function getIndex()
{
   // 取到ID为3的文章 这篇文章与id为1的tag有关系。
   $post = Post::findOrFail(3);
   // attach方法的参数只需要传递id(整型)即可,中间表会自动更新。
   // 注意:attach的功能是追加一个关系并非更新,执行以下代码后 该post会与id为3和2的tag有关系。
   $post ->tags()->attach(2);
   $post ->save();
}

当追加关系时同样也可以将一个中间表数据加入第二个参数,以此更新中间表的其他列.

?
1
2
3
4
5
6
7
8
public function getIndex()
{
   // 取到ID为3的文章 这篇文章与id为1的tag有关系。
   $post = Post::findOrFail(3);
   // attach方法的参数只需要传递id(整型)即可,中间表会自动更新。
   // 注意:attach的功能是追加一个关系并非更新,执行以下代码后 该post会与id为3和2的tag有关系。
   $post ->tags()->attach(2, [ 'expires' => true]);
}

批量追加:

?
1
2
3
4
5
6
public function getIndex()
{
   $post = Post::findOrFail(3);
   // 第一个参数也可以接收一个数组。
   $post ->tags()->attach([2, [ 'expires' => true], 4, 6]);
}

2.4 卸载一个关系(多对多关系)

detach方法于attach方法相反,detach方法会将关联关系删除:

?
1
2
3
4
5
public function getIndex()
{
   $post = Post::findOrFail(3);
   $post ->tags()->detach(1);
}

批量卸载:

?
1
2
3
4
5
public function getIndex()
{
   $post = Post::findOrFail(3);
   $post ->tags()->detach([1, 3, 5]);
}

2.5 同步关系

同步关系可谓是非常方便,具体的看注释吧,写的很清楚:

?
1
2
3
4
5
6
7
public function getIndex()
{
   // 取出id为2的tag,此时它只和id为3的post有关联。
   $tag = Tag::findOrFail(2);
   // 同步:传入一个id数组,存在于此数组的id都会被追加关系,而不在此数组中的id模型关联 都会被移除。
   $tag ->posts()->sync([2, 4, 5]);
}

注意:sync方法也可以传入第二个参数,也是数组类型 以便更新中间表中的其他列。由于语法跟前面几个方法一样,就不在重复写了.

希望本文所述对大家基于Laravel框架的PHP程序设计有所帮助.

原文链接:https://www.cnblogs.com/sun-kang/p/7726637.html 。

最后此篇关于Laravel5.1 框架关联模型之后操作实例分析的文章就讲到这里了,如果你想了解更多关于Laravel5.1 框架关联模型之后操作实例分析的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com