【TP5】关联预加载只查询指定字段(类的属性不存在)

2019-10-08  本文已影响0人  小进我是爸爸

【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');
    }
    //
}
上一篇 下一篇

猜你喜欢

热点阅读