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