ThinkPHP5下has_one和belongs_to的區別
在查閱了相關Tp5開發文件和相關部落格後,總結出關於belongsTo和hasOne的區別,主要是看你是在哪一個model(模型)中編寫這個關聯關係,父關聯物件就是在父關聯model(本文是在Products的model類)下編寫的關聯模型。下面是兩種關聯的使用時機。
has_one(或has_many):外來鍵在子關聯物件中
例子:
//父關聯物件表
Products{
id
product_name
}
//子關聯物件表
Image{
image_id
img_name
product_id //foreign key
}
在TP5中的寫法為:
//hasOne方法的引數包括:
//hasOne(`關聯模型名`,`外來鍵名`,`主鍵名`,[`模型別名定義`],`join型別`);
//預設的join型別為INNER
//寫在Products的model類中
public function Img(){
$this->hasOne(`Image`,`product_id`,`id`);
}
belongs_to:外來鍵在你父聯物件中
//父關聯物件表:
Product{
product_id
img_id //foreignkey
product_name
}
//子關聯物件表
Image{
id
img_name
}
在TP5中的寫法為:
//belongsTo方法的引數包括:
//belongsTo(‘關聯模型名’,‘外來鍵名’,‘關聯表主鍵名’,[‘模型別名定義’],‘join型別’);
//預設的join型別為INNER
//寫在Products的model類中
public function Img(){
$this->belongsTo(`Image`,`img_id`,`id`);
}