首页 > 代码库 > yii2表关联实例

yii2表关联实例

yii2表关联

例如:商品表关联品牌表

在控制器中:

$goods_info=$goods_model::find()->joinWith(‘brand‘)->all();

模型中:

//关联品牌表
    public function getbrand(){
        return $this->hasMany(Brand::className(), [‘brand_id‘ => ‘goods_brand_id‘]);
    }

多表关联类似