laravel model relationship
laravel支持多种模型之间的relation,对应着模型间的one2one, one2many,many2many,hasManyThrough,Polymorphic, many2many polymorphic关系。
心法
1.所有relation都由model class上的方法来定义;
2. relationship和model本身都是以query builder作为基类的,因此对relation的操作也可以使用类似query builder的方法,比如:可以支持级联;
3.Dynamic property of model:这是 model->relation方式引用的结果,这种方式直接返回relation model的value,不支持query builder的级联操作,这是和model->relation()方法调用的本质区别。
也就是说model->relation = model->relation()->get()
关系的种类:
one 2 one(一对一)
例子User hasOne Phone, Phone belongsTo User这种关系。要使得这种关系work,则需要以下前提:
1. User模型
base table: users,
字段预设: id
relation method: phone (){ return $this->hasOne('App\Phone') }
注意:按照laravel的命名规约,laravel会假设phones表中有一个user_id字段作为users表中的id外键,
我们可以通过在user()方法中传入另外的参数来覆盖这种规约,比如$this->hasOne('App\Phone','owner_id')
在这里owner_id就是phones表中外键引用users表的id的字段名称(默认为user_id);
2.Phone模型
base table: phones,
字段预设: user_id
relation method: user(){ return $this->belongsTo('App\User')}
在这里,laravel也会预设parent表(也就是users表)中有一个id字段为primary key,如果你的parent表并不是使用id作为主键,则在上面的hasOne调用中,可以使用第三个参数来指定这个主键,比如
user(){return $this->hasOne('App\User','owner_id','u_id'}. 这里owner_id为phones表中对users表主键(u_id)的外键引用字段名称
One 2 Many(一对多)
例子: Post hasMany Comments, Comment belongsTo Post,这就是典型的一对多关系模型
1. Post模型
base table: posts
字段预设:id标示行主键
relation method: comments(){return $this->hasMany('App\Comment')}
如果需要覆盖默认命名规约,我们需要这样调用:
public function comments(){return $this->hasMany('App\Comment','foreign_owner_postid_key','local_postid_key')}
注意这里:foreign_owner_postid_key就是要在comments表中具有的字段名;
local_postid_key就是posts本表中必须具有的主键字段名
2. Comment模型
base table: comments
字段预设: post_id 作为posts表的外键
relation method: post(){return $this->belongsTo('App\Post')}
如果需要覆盖默认命名规约,同样我们需要这样调用:
public function post(){return $this->belongsTo('App\Post','foreign_owner_postid_key','other_local_postid_key'}
注意:这里foreign_owner_postid_key就是在本comments表中必须具有的引用posts表的外键字段名;
other_local_postid_key就是必须在posts表中具有的主键名称。之所以加local,other就是代表的是本表的还是关联表的。
另外,上面也已经提到由于relationship本身就是query builder因此可以增加约束级联,比如:
Post::find(1)->comments()->where('title','foo')->first()就只取title为foo的第一条post对应的comment
other_local_postid_key就是
注意按照laravel默认命名规约,一对多的关系模型,child model中的owning model
many 2 many(多对多)
例子: User belongsToMany Role, Role belongsToMany User
1. User模型
base table: users
字段预设: id主键
relation method: roles(){return $this->belongsToMany('App\Role')}
其他预设: role_user pivot表(即两个小写关系之间按照字母排序使用 _ 连接起来)
2. Role模型
base table: roles
字段预设: id主键
relation method: users(){return $this->belongsToMany('App\User')}
其他预设: role_user pivot表(即两个小写关系之间按照字母排序使用 _ 连接起来)
上面的两个model中都有预设pivot表,我们可以通过传参来覆盖它(注意这里只需要在一个方向上调用即可,不用像上面one 2 many需要两边都这样调用才能work!):
public function roles(){return $this->belongsToMany('App\Role','user_role','user_pivot_ziduan_name','role_ziduan_name_in_pivot')}
再看一个使用query builder特性的例子:$roles=App\User::find(1)->roles()->orderBy('name')->get()
也可以在访问relation的同时访问pivot表数据:
public function roles(){$this->belongsToMany('App\Role')->withPivot('column1_in_pivot','c2_in_pivot')}
foreach ($user->roles as $role){ echo $role->pivot->column1_in_pivot}
上面代码中获取relation的同时,也返回pivot表格的对应数据,并且可以作为pivot relation来操作数据
has Many through(通过xx一对多)
例子:由于Country hasMany User,同时User hasMany Post,所以Country可以hasMany Post via User(注意同时User belongsTo Countery, Post belongsTo User)
1. Country模型
base table: countries
字段预设: id, name
relation methods:
public function users(){return $this->hasMany('App\User')}
public function posts(){return $this->hasManyThrough('App\Post')}
2.User模型
base table: users
字段预设: id, country_id, username
relation method: country(){return $this->belongsTo('App\Country')}
3.Post模型
base table: posts
字段预设: id, user_id, title,description
relation method: user(){return $this->belongsTo('App\User')}
Polymorphic relation(多态一对多)
例子:Photo可以morphTo Staff, 同时Photo也可以morphTo Product, Product可以morphMany Photo, Staff也可以morphMany Photo,也就是说一个model可以belongsTo多种parentmodel,多种parentmodel都可以hasMany这个model时,非常适合这种polymorphic relation
1. Staff模型:
base table: staffs
字段预设: id, name
relation method: photos(){return $this->morphMany('App\Photo','imagable')} //注意imagable是Photo模型的一个relation method
2.Product模型
base table: products
字段预设: id, name, price
relation method: photos(){return $this->morphMany('App\Photo','imagable')}//注意imagable是Photo模型的一个relation method
3. Photo模型
base table: photos
字段预设: id,path,imageable_id,imageable_type //注意imageable就是本模型中的relation method名称,这里imageable_id和imageable_type非常关键,也是laravel根据photos表找到对应photos属于哪种模型的关键,也就是说一张图片到底是staff的图片还是产品product的图片,就看这个type和id了,由type找到是哪张表,id再找到这张表中第几条数据。默认情况下laravel会使用Model的class全称作为type,但是有时你可能并不希望如此,这时,一个可行的方案是创建一个types表,来指定这种对应关系,同时在AppServiceProvider booted方法中调用
Relation::morphMap($morphMapArray);
来完成这种人性化的映射关系
Many 2 Many Polymorphic Relations
例子: Post可以打上多个Tag标签, Video也可以同样打上多个Tag,也就是说Tag可以同时打在video或者post上。
如何在model中增加一个不存在于base table字段中的字段?
很多时候存在这样的场景:你很难找到一个适合的relation来描述两个表格之间的关系,或者你不需要建立复杂的relation,你只需要在你返回的model中添加一条额外的信息,比如,User model中你可能需要一条额外的字段'isAdmin'来方便判断该用户是否admin用户,这时可以这样操作:(但是好像动态访问不是很好用)
https://laravel.com/docs/5.1/eloquent-serialization#appending-values-to-json
class User extends Model
{
protected $appends = ['is_admin'];
/**
* Get the administrator flag for the user.
*
* @return bool
*/
public function getIsAdminAttribute()
{
return $this->attributes['admin'] == 'yes';
}
}
laravel relation相关简单调试手段
虽然laravel的relation非常强大,只要你稍加熟悉,你就能花非常少的effort构建出非常强大的web后端应用来。但是有时候,一些高级的sql查询,laravel可能并未按照我们的预期工作,这时,我们就希望eloquent最终到底映射成了什么sql,有几种方法获取这方面的信息:
1. get()替换为toSql()直接打印出来;
$results = User::where(function($q) use ($request) {
$q->orWhere('email', 'like', '%john@example.org%');
$q->orWhere('first_name', 'like', '%John%');
$q->orWhere('last_name', 'like', '%Doe%');
})->toSql();
2. listen事件
\DB::listen(function($sql) {
var_dump($sql);
});
https://scotch.io/tutorials/debugging-queries-in-laravel
查询relation时针对relation实现限制条件:(has, doesnotHave)
// Retrieve all posts with at least one comment containing words like foo%
$posts = Post::has('comments.votes')->get(); // 简化版
$posts = Post::whereHas('comments', function ($query) {
$query->where('content', 'like', 'foo%');
})->get(); $posts = App\Post::doesntHave('comments')->get(); // 简化版
$posts = Post::whereDoesntHave('comments', function ($query) {
$query->where('content', 'like', 'foo%');
})->get();
hasManyThrough 多对多?
http://laravel.io/forum/03-04-2014-hasmanythrough-with-many-to-many
laravel model relationship的更多相关文章
- Laravel Model 利用 Macroable 为数据模型添加宏能力
什么是ThinkSNS ? ThinkSNS(简称TS),一款全平台综合性社交系统,为国内外大中小企业和创业者提供社会化软件研发及技术解决方案,目前最新版本为ThinkSNS+(简称TS+).Thin ...
- Laravel Model查询结果的3种存储格式内存占用对比
PHP Laravel框架支持Model查询数据后可以有多种方式返回数据,对新手会造成一些困扰,比如数组Model对象.集合.纯数组 今天从内存占用的角度对比一下3种数据返回方式 按数组Model对象 ...
- Laravel Model 的 fillable (白名单)与 guarded (黑名单)
例如 protected $fillable = ['name']; protected $guarded = ['price']; 定义了 name 字段可以写入/修改,而 price 字段不可以. ...
- Laravel Model Factory(模型工厂)的用法以及数据本地化
Model Factory的位置 生成数据方法:make是生成数据,create是生成数据并保存到数据库 本地化方法 这样便生成了中文数据 整理自www.laravist.com视频教程
- Laravel Model updating&updated 事件使用注意事项
1 触发条件 1.1 updating 1.1.1 如果字段无变化,不会触发此事件. 1.1.2 除非更改至少一个字段的值 2 事件逻辑不会覆盖 2.1 Trait 中定义事件如下 /** * The ...
- 保存 laravel model 而不更新 timestamps 的方法
$product = Product::find(1); $product->view_count += 1; $product->timestamps = false; $product ...
- Laravel Relationship Events
Laravel Relationship Events is a package by Viacheslav Ostrovskiy that adds extra model relationship ...
- PHP and laravel知识点小小积累
function () use ($x, &$y){} 自从PHP5.3开始有了closure/匿名函数的概念,在这里的use关键词的作用是允许匿名函数capture到父函数scope 内存在 ...
- Laravel 系列入门教程(一)【最适合中国人的 Laravel 教程】
热烈庆祝 Laravel 5.5 LTS 发布! 实际上 Laravel 上一个 LTS 选择 5.1 是非常不明智的,因为 5.2 增加了许许多多优秀的特性.现在好了,大家都用最新的长期支持版本 5 ...
随机推荐
- SQL LIKE 通配符随笔
通配符 说明 _ 与任意单字符匹配 % 与包含一个或多个字符的字符串匹配 [ ] 与特定范围(例如,[a-f])或特定集(例如,[abcdef])中的任意单字符匹配. [^] 与特定范 ...
- Python3 print()函数sep,end,file参数用法练习
来自builtins.py:def print(self, *args, sep=' ', end='\n', file=None): # known special case of print &q ...
- Linux 服务器开发常用命令操作
1)查看网络端口 netstat -na --ip 2)查看特定应用程序进程 ps -ef | grep vsftp or ps aux | grep xxx.exe 3)查看系统日志 vi /et ...
- lambda modern C++
Lambda expressions (since C++11) Syntax [ captures ] <tparams>(optional)(c++20) ( params ) s ...
- TestNG学习地址分享
谨以此随笔来记录一个曾经学习TestNG的网站,供以后作为工具书查阅. 链接地址,点击此处.
- PHP之string之str_pad()函数使用
str_pad (PHP 4 >= 4.0.1, PHP 5, PHP 7) str_pad - Pad a string to a certain length with another st ...
- Oracle 12c JDBC 连接
import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import ...
- [Mysql 查询语句]——集合函数
count() 统计记录条数 select count(*) from student; +----------+ | count(*) | +----------+ | +----------+ s ...
- IIS 站点 共享目录
1.先建立站点,再设置文件夹为共享,Everyone 2.Mac电脑 Everyone不能访问,必须建立用户
- 关于vs2015无法启动iis服务
关于vs2015无法启动iis服务,以下是我自己从网上找到的问题的几种解决办法 1.安装Visual Sutudil 2015 Update 3后调试项目出现问题“无法启动iis express we ...