我尝试构建具有多对多关系的网格视图。所以我需要查询ActiveDataProvider
。
我有一张桌子' ressource',一张桌子' type'在他们之间有一张桌子' historique'。
我的模型中有很好的关系,但我不知道如何创建dataProvider。
在我的模型Ressource:
public function getHistorique()
{
return $this->hasMany(Historique::className(), ['idType' => 'idType']);
}
public function getType()
{
return $this->hasMany(Type::className(), ['idType' => 'idType'])
->viaTable(Historique::className(), ['idRessource' => 'idRessource']);
}
在我的模型Historique中:
public function getType()
{
return $this->hasOne(Type::className(), ['idType' => 'idType']);
}
public function getRessource()
{
return $this->hasOne(Ressource::className(), ['idRessource' => 'idRessource']);
}
最后在我的模型中输入:
public function getHistorique()
{
return $this->hasMany(Historique::className(), ['idType' => 'idType']);
}
public function getRessource()
{
return $this->hasMany(Ressource::className(), ['idRessource' => 'idRessource'])
->viaTable(Historique::className(), ['idType' => 'idType']);
}
所以在Controller(实际上是我的ModelSearch)中,我希望从表历史中获得具有类型的资源。
后我不知道要添加什么Ressource::find();
答案 0 :(得分:3)
我认为您使用RessourceSearch()->search()
方法。所以在里面你有这样的东西:
$query = Ressource::find();
$dataProvider = new ActiveDataProvider([
'query' => $query,
]);
if (!($this->load($params) && $this->validate())) {
return $dataProvider;
}
// Here is list of searchable fields of your model.
$query->andFilterWhere(['like', 'username', $this->username])
->andFilterWhere(['like', 'auth_key', $this->auth_key])
return $dataProvider;
因此,基本上,您需要在查询中添加额外的Where
并强制加入关系表。您可以使用joinWith
方法加入其他关系,andFilterWhere
使用table.field
表示法添加过滤器参数。例如:
$query = Ressource::find();
$query->joinWith(['historique', 'type']);
$query->andFilterWhere(['like', 'type.type', $this->type]);
$query->andFilterWhere(['like', 'historique.historique_field', $this->historique_field]);
另外,请不要忘记在搜索模型中添加其他过滤器的规则。例如,您应该在rules()
数组中添加类似的内容:
public function rules()
{
return [
// here add attributes rules from Ressource model
[['historique_field', 'type'], 'safe'],
];
}
您可以对该字段使用任何其他验证规则