美文网首页
关联模型一对多

关联模型一对多

作者: 小进我是爸爸 | 来源:发表于2019-08-20 17:08 被阅读0次

模型名称不能用下划线

namespace app\admin\model;

use think\Model;

class Article extends Model

{

    protected $resultSetType = 'collection';

    protected $table='tp_article';

    public function articleimg()

{

        return $this->hasMany('articleimg','aid','id');

    }

    //

}

$list = Articles::with('articleimg')->where('id',50)->select()->toArray();

dump($list);die;

相关文章

网友评论

      本文标题:关联模型一对多

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