我有兩個表「Personal_data」和「Students」,學生有Personal_data。 我用Gii來生成視圖,控制器和模型的代碼,我需要在GridView中顯示來自「學生」的所有「Personal_data」,但我無法得到它。Yii2 - 顯示兩個表格之間的共同行
從模型代碼/ PersonalDataSearch.php
public function search($params)
{
$query = PersonalData::find()->joinWith('Students'])->all();
$dataProvider = new ActiveDataProvider([
'query' => $query,
]);
$this->load($params);
if (!$this->validate()) {
return $dataProvider;
}
$query->andFilterWhere([
'id' => $this->id,
'document' => $this->document,
'telephone' => $this->telephone,
'direction' => $this->direction,
'sex' => $this->sex,
]);
$query->andFilterWhere(['like', 'names', $this->names])
->andFilterWhere(['like', 'lastNames', $this->lastNames])
->andFilterWhere(['like', 'email', $this->email])
->andFilterWhere(['like', 'movile', $this->movile]);
return $dataProvider;
}
從控制器代碼/ PersonalDataController.php
public function actionIndex()
{
$searchModel = new PersonalDataSearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
return $this->render('index', [
'searchModel' => $searchModel,
'dataProvider' => $dataProvider,
]);
}
代碼從視圖/個人數據/ index.php的
<?= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
'names',
'lastNames',
'email:email',
'movile',
['class' => 'yii\grid\ActionColumn'],
],
]); ?>
此視圖最初顯示來自所有註冊人員的Personal_data表中的所有行,但我想要只顯示來自學生Personal_Data,我加入這一行:
$query = PersonalData::find()->joinWith('Students'])->all();
,我有這樣的錯誤:
PHP Fatal Error – yii\base\ErrorException
Call to a member function andFilterWhere() on array
我怎樣才能解決這個問題?
Bizley你是對的,刪除all()方法,解決了錯誤,但GridView仍然顯示「PersonalData」中的所有行。試了一遍又一遍我加了這個: $ query = PersonalData :: find() - > innerJoinWith('Students') - > where(['''','Students.id','null']] ); 現在我從「學生」處獲得所有「personal_data」,謝謝。 –
爲什麼不以相反的方式顯示關係?學生 - > personal_data。 – Bizley
我需要在PersonalData和其他學生中顯示一些數據,但會是一個選項,謝謝。 –