下面是down_log表的模型,我关联了portal_post表,下面的设置好后,我在查询时怎么使用才可以把我关联了portal_post表中的数据一并查询出来?
<?php
namespace app\portal\model;
use think\Model;
class AdminDownLogModel extends Model
{
protected $name="down_log";
/**
* 关联 portal_post表
* @return \think\model\relation\BelongsTo
*/
public function portal_post()
{
return $this->belongsTo('PortalPost', 'articleId');
}
}
https://www.kancloud.cn/manual/thinkphp6_0/1037601