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

Pass data to next page in yii2

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

我很困惑,宁愿使用 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 但它没有重定向到“checkin/index”页面 它在同一年龄刷新并且行 ID 附加在 url.

的末尾

但是当我使用这个脚本时

 <?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 页面正常 但是 url 没有得到 id 它的显示 checkin/index/id=undefined

我想将 id 传递给 checkinSearch 控制器,并且只显示点击行的数据以供使用。

你可以试试这个.. 例如

<?= 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;
            }
        });
    });
"); ?>

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