远程一对多关联用于定义有跨表的一对多关系,例如:
就可以直接通过远程一对多关联获取每个城市的多个话题,City
模型定义如下:
<?php
namespace app\model;
use think\Model;
class City extends Model
{
public function topics()
{
return $this->hasManyThrough(Topic::class, User::class);
}
}
远程一对多关联,需要同时存在
Topic
和User
模型,当前模型和中间模型的关联关系可以是一对一或者一对多。
hasManyThrough
方法的参数如下:
hasManyThrough('关联模型', '中间模型', '外键', '中间表关联键','当前模型主键','中间模型主键');
_id
_id
我们可以通过下面的方式获取关联数据
$city = City::find(1);
// 获取同城的所有话题
dump($city->topics);
// 也可以进行条件搜索
dump($city->topics()->where('topic.status',1)->select());
条件搜索的时候,需要带上模型名作为前缀
如果需要根据关联条件来查询当前模型,可以使用
$list = City::hasWhere('topics', ['status' => 1])->select();
更复杂的查询条件可以使用
$where = Topic::where('status', 1)->where('title', 'like', '%think%');
$list = City::hasWhere('topics',$where)->select();