modelsearch在yii2中不起作用

时间:2016-08-23 13:04:30

标签: php web phpmyadmin yii2

我在yii2中进行模型搜索时遇到了一些问题。

这是我桌子的关系 enter image description here

我想在表格 aitambah 中显示 Jurusan ais3 ,我想在表格中显示 NamaMahasiswa strong> ai 到 ais3 。我创建了表 s3penghubung ,以便表 aitambah 可以与 ais3 相关联。我能够显示它们。但是,当我尝试在“NRP”字段中键入“71501”时,搜索无法正常工作。它刷新了页面。显示的行没有任何变化。所以,我该怎么做才能解决这个问题? enter image description here

这是我的模型搜索代码:

<?php

namespace app\models;

use Yii;
use yii\base\Model;
use yii\data\ActiveDataProvider;
use app\models\Ais3;

/**
 * Ais3Search represents the model behind the search form about `app\models\Ais3`.
 */
class Ais3Search extends Ais3
{
    /**
     * @inheritdoc
     */
    public function rules()
    {
        return [
            [['id', 'kode'], 'integer'],
            [['NRP', 'namaMahasiswaText', 'ProgramStudi', 'TanggalMasuk', 'TanggalKeluar'], 'safe'],
        ];
    }

    public $NamaMahasiswa;
    public $namaMahasiswaText;


    /**
     * @inheritdoc
     */
    public function scenarios()
    {
        // bypass scenarios() implementation in the parent class
        return Model::scenarios();
    }

    /**
     * Creates data provider instance with search query applied
     *
     * @param array $params
     *
     * @return ActiveDataProvider
     */
    public function search($params)
    {
        $query = Ais3::find();
        $query->joinWith('ai');

        // add conditions that should always apply here

        $dataProvider = new ActiveDataProvider([
            'query' => $query,
        ]);

        $this->load($params);

        if (!$this->validate()) {
            // uncomment the following line if you do not want to return any records when validation fails
            // $query->where('0=1');
            return $dataProvider;
        }

        // grid filtering conditions
        $query->andFilterWhere([
            'id' => $this->id,
            'kode' => $this->kode,
        ]);

        $query->andFilterWhere(['like', 'ais3.NRP', $this->NRP])
            ->andFilterWhere(['like', 'ai.NamaMahasiswa', $this->namaMahasiswaText])
            ->andFilterWhere(['like', 'ais3.ProgramStudi', $this->ProgramStudi])
            ->andFilterWhere(['like', 'ai.TanggalMasuk', $this->TanggalMasuk])
            ->andFilterWhere(['like', 'ais3.TanggalKeluar', $this->TanggalKeluar]);

        return $dataProvider;
    }
}

这里是mygridview代码

<?= GridView::widget([
        'dataProvider' => $dataProvider,
        'filterModel' => $searchModel,
        'columns' => [
            ['class' => 'yii\grid\SerialColumn'],

            //'id',
            'NRP',
            'namaMahasiswaText',
            'ProgramStudi',
            //'TanggalMasuk',
            [
            'attribute' => 'TanggalMasuk',
            'value' => function($data) {
                return $data->ai->TanggalMasuk;
            },],
            'TanggalKeluar',

            //YANG DITAMBAH
            [
                'attribute'=>'NRP',
                'value'=>'s3penghubung.aitambah.JURUSAN',
                'label' => 'Jurusan',
            ],

            [
                'attribute'=>'NRP',
                'value'=>'s3penghubung.aitambah.NAMKANTOR',
                'label' => 'Nama Kantor',
            ],
            [
                'attribute'=>'NRP',
                'value'=>'s3penghubung.aitambah.ANGKATAN',
                'label' => 'Angkatan',
            ],
            [
                'attribute'=>'NRP',
                'value'=>'s3penghubung.aitambah.TELP',
                'label' => 'Nomor HP/Telp',
            ],
            [
                'attribute'=>'NRP',
                'value'=>'s3penghubung.aitambah.PEKERJAAN',
                'label' => 'Pekejaan',
            ],
            [
                'attribute'=>'NRP',
                'value'=>'s3penghubung.aitambah.EMAIL',
                'label' => 'Email',
            ],
            [
                'attribute'=>'NRP',
                'value'=>'s3penghubung.aitambah.KODEPROP',
                'label' => 'KodeProp',
            ],


            // 'kode',

            ['class' => 'yii\grid\ActionColumn'],
        ],
    ]); ?>

我认为我的查询过滤器一定有问题

$query->andFilterWhere(['like', 'ais3.NRP', $this->NRP])
            ->andFilterWhere(['like', 'ai.NamaMahasiswa', $this->namaMahasiswaText])
            ->andFilterWhere(['like', 'ais3.ProgramStudi', $this->ProgramStudi])
            ->andFilterWhere(['like', 'ai.TanggalMasuk', $this->TanggalMasuk])
            ->andFilterWhere(['like', 'ais3.TanggalKeluar', $this->TanggalKeluar]);

但我不知道如何修复这些代码。你能帮我解决这个问题吗?三江源

正确的答案在这里: 这是索引中的gridview enter image description here

这是在modelsearch中 enter image description here

谢谢 ck_anjuk 解决我的问题。

0 个答案:

没有答案