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

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

作者: 小进我是爸爸 | 来源:发表于2019-10-08 15:43 被阅读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');
        }
        //
    }
    

    相关文章

      网友评论

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

          本文链接:https://www.haomeiwen.com/subject/cmccuctx.html