关联模型一对多

2019-08-20  本文已影响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;

上一篇 下一篇

猜你喜欢

热点阅读