【TP5】关联预加载只查询指定字段(类的属性不存在)
namespace app\shop\model;
use think\Model;
class Article extends Model
{
protected $resultSetType = 'collection';
protected $table='tp_article';
public function articleimg()
{
return $this->hasMany('Articleimg','aid','id')->field('aid,img_url');
}
//
}
网友评论