我尝试创建一个多态关联,在Rails中是常见的,但不幸的是不是在Yii2中.作为实现的一部分,我需要定义关系:
原文链接:https://www.f2er.com/php/131896.htmlpublic function getImages() { return $this->hasMany(RecipeImage::className(),['imageable_id' => 'id','imageable_type' => 'Person']); }
但是这不起作用,因为“Person”被视为当前模型的属性,但它是一个常量(多态关联的类名称).
如果我尝试使用’andWhere’,它会在WHERE子句中添加条件,而不是ON子句,导致仅返回现有映像的记录.
public function getImages() { return $this->hasMany(RecipeImage::className(),['imageable_id' =>" id'])-> andWhere(['imageable_type' => 'Ingredient']); }
如何定义关系?没有andOn方法.