将数据传递到yii2中的下一页

时间:2015-09-04 04:01:22

标签: javascript model-view-controller yii2 yii2-advanced-app

我正在Yii2开展一个项目 要求是当用户点击gridview中的一行时,它应该打开一个名为check in的新控制器,并显示为该特定行签入的所有用户。

我很困惑使用actioncolumn并创建一个新按钮或使用rowopions

无论如何,当我像这样使用rowoptions

        [
            'class' => 'yii\grid\ActionColumn',
            'template' => '{index} {view} {update} {delete} ',
            'buttons' => [

                'index' => function ($url,$model) {

                    return Html::a('<span class="glyphicon glyphicon-user"></span>', $url);

                },
            ]

        ],

当我使用javascript的代码时

<?php
        $this->registerJs("
            $('tbody td').css('cursor', 'pointer');
            $('tbody td').click(function (e) {
                var id = $(this).closest('tr').data('id');
            if (e.target == this)
                location.href = '" . Url::to(['checkin/index' ]) . "?id=' + id;
            });
        ");
    ?>

它会在行点击事件中显示ID,但不会重定向到&#34; checkin/index&#34;页 它会在相同的年龄刷新,行ID会附在网址的末尾。

但是当我使用这个脚本时

 <?php
    $this->registerJs("

        $('td').click(function (e) {
            var id = $(this).closest('tr').data('id');
            if(e.target == this)
                location.href = '" . Url::to(['checkin/index']) . "?id=' + id;
        });

    ");
?>

它会重定向到checkin/index页面 但网址没有得到任何id 它的显示checkin/index/id=undefined

我想将ID传递给checkinSearch控制器,只显示点击的行的数据。

1 个答案:

答案 0 :(得分:1)

你可以试试这个.. E.g。

<?= GridView::widget([
    'dataProvider' => $dataProvider,
    'filterModel' => $searchModel,
    'rowOptions' => function ($model, $key, $index, $grid) {
                        return ['id' => $model['student_id'], 'class' => 'action-tr', 'data-link' => urldecode(Url::toRoute(['/student/student-transaction/update', 'id' => $model['student_id']]))];
    },
    'columns' => [
        ['class' => 'yii\grid\SerialColumn'],

        [
          'attribute' => 'student_roll_no',
          'value' => 'rel_Stud_Info.student_roll_no',
        ],
        [
          'class' => 'yii\grid\ActionColumn',
          'template' => '{update} {delete}',
          'contentOptions' => ['class'=>'action-td'],       
        ],
    ],
]); ?>

并在Js下方注册,以防止ActionColumn重定向行点击。

<?php
    $this->registerJs("
    $(document).ready(function(){
        $('.action-tr').on('click', 'td:not(.action-td)', function(){

            //get the link from data attribute
            var the_link = $(this).parent().attr('data-link');

            //do we have a valid link      
            if (the_link == '' || typeof the_link === 'undefined') {
            //do nothing for now
            }
            else {
            //open the page
            window.location = the_link;
            }
        });
    });
"); ?>

这个例子是真实项目的一部分,对我有用。 试试吧......