一對(duì)多關(guān)聯(lián)
關(guān)聯(lián)定義
一對(duì)多關(guān)聯(lián)的情況也比較常見(jiàn),使用hasMany
方法定義,
參數(shù)包括:
hasMany('關(guān)聯(lián)模型名','外鍵名','主鍵名',['模型別名定義']);
例如一篇文章可以有多個(gè)評(píng)論
<?php
namespace app\index\model;
use think\Model;
class Article extends Model
{
public function comments()
{
return $this->hasMany('Comment');
}
}
同樣,也可以定義外鍵的名稱
<?php
namespace app\index\model;
use think\Model;
class Article extends Model
{
public function comments()
{
return $this->hasMany('Comment','art_id');
}
}
如果需要指定查詢字段,可以使用下面的方式:
<?php
namespace app\index\model;
use think\Model;
class Article extends Model
{
public function comments()
{
return $this->hasMany('Comment')->field('id,author,content');
}
}
關(guān)聯(lián)查詢
我們可以通過(guò)下面的方式獲取關(guān)聯(lián)數(shù)據(jù)
$article = Article::get(1);
// 獲取文章的所有評(píng)論
dump($article->comments);
// 也可以進(jìn)行條件搜索
dump($article->comments()->where('status',1)->select());
根據(jù)關(guān)聯(lián)條件查詢
可以根據(jù)關(guān)聯(lián)條件來(lái)查詢當(dāng)前模型對(duì)象數(shù)據(jù),例如:
// 查詢?cè)u(píng)論超過(guò)3個(gè)的文章
$list = Article::has('comments','>',3)->select();
// 查詢?cè)u(píng)論狀態(tài)正常的文章
$list = Article::hasWhere('comments',['status'=>1])->select();
V5.0.13+
版本開(kāi)始,hasWhere
方法新增fields
參數(shù),用于指定返回的字段列表。例如:
// 查詢?cè)u(píng)論狀態(tài)正常的文章
$list = Article::hasWhere('comments', ['status'=>1], 'name,title')
->select();
關(guān)聯(lián)新增
$article = Article::find(1);
// 增加一個(gè)關(guān)聯(lián)數(shù)據(jù)
$article->comments()->save(['content'=>'test']);
// 批量增加關(guān)聯(lián)數(shù)據(jù)
$article->comments()->saveAll([
['content'=>'thinkphp'],
['content'=>'onethink'],
]);
定義相對(duì)的關(guān)聯(lián)
要在 Comment 模型定義相對(duì)應(yīng)的關(guān)聯(lián),可使用 belongsTo 方法:
<?php
name app\index\model;
use think\Model;
class Comment extends Model
{
public function article()
{
return $this->belongsTo('article');
}
}
文檔最后更新時(shí)間:2018-06-09 15:33:56
未解決你的問(wèn)題?請(qǐng)到「問(wèn)答社區(qū)」反饋你遇到的問(wèn)題