如何在 Yii2 的 ON 条件下使用常量 hasMany 关系
How to use constant in the ON condition in Yii2 hasMany relation
我尝试创建一个多态关联,这在 Rails 中很常见,但不幸的是在 Yii2 中却没有。作为实现的一部分,我需要定义关系:
public function getImages()
{
return $this->hasMany(RecipeImage::className(),
['imageable_id' => 'id', 'imageable_type' => 'Person']);
}
但这不起作用,因为'Person'被视为当前模型的一个属性,但它是一个常量(class多态关联的名称)。
如果我尝试使用 'andWhere' 它当然会在 WHERE 子句而不是 ON 子句中添加条件,导致只返回具有现有图像的记录。
public function getImages()
{
return $this->hasMany(RecipeImage::className(), ['imageable_id' => 'id'])->
andWhere(['imageable_type' => 'Ingredient']);
}
如何定义关系?没有andOn方法。
在这种情况下,您可以使用 andOnCondition
方法修改 ON 条件:
public function getImages()
{
return $this->hasMany(RecipeImage::className(), ['imageable_id' => 'id'])
->andOnCondition(['imageable_type' => 'Person']);
}
官方文档:
我尝试创建一个多态关联,这在 Rails 中很常见,但不幸的是在 Yii2 中却没有。作为实现的一部分,我需要定义关系:
public function getImages()
{
return $this->hasMany(RecipeImage::className(),
['imageable_id' => 'id', 'imageable_type' => 'Person']);
}
但这不起作用,因为'Person'被视为当前模型的一个属性,但它是一个常量(class多态关联的名称)。
如果我尝试使用 'andWhere' 它当然会在 WHERE 子句而不是 ON 子句中添加条件,导致只返回具有现有图像的记录。
public function getImages()
{
return $this->hasMany(RecipeImage::className(), ['imageable_id' => 'id'])->
andWhere(['imageable_type' => 'Ingredient']);
}
如何定义关系?没有andOn方法。
在这种情况下,您可以使用 andOnCondition
方法修改 ON 条件:
public function getImages()
{
return $this->hasMany(RecipeImage::className(), ['imageable_id' => 'id'])
->andOnCondition(['imageable_type' => 'Person']);
}
官方文档: