我有一个视图event
,它有一个额外的操作按钮,可以重定向到checkin/index
页面
这是我的gridview
<?= GridView::widget([
'id'=>'event-table',
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
'title',
'location',
[
'class' => 'yii\grid\ActionColumn',
'template' => '{checkin/index} {view} {update} {delete} ',
'contentOptions' => ['class'=>'action-td'],
'buttons' => [
'checkin/index' => function ($url,$model) {
return Html::a('<div id="notification-container"><span data-pjax=false class="glyphicon glyphicon-user"></span>'.EventSearch::showCheckin($model->id) .'</div>', $url,['data-pjax' => true]);
},
]
],
]
]);
当使用点击该按钮时,它将打开checkin/index
页面
所以我想发送点击该按钮的行的title
在checkin/index
页面上,我可以将该标题用作$this->title
有没有办法在动作按钮点击时传递数据
这是我的checkin/index
代码
public function actionIndex()
{
$searchModel = new CheckinSearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
return $this->render('index', [
'searchModel' => $searchModel,
'dataProvider' => $dataProvider,
]);
}
我无法使用下面的代码,因为我的$model
只有event_id
的值作为相关表格,而checkin/index
页面上我使用gridview和relation来直接使用{{1}显示标题}
event.title
答案 0 :(得分:2)
例如,
'buttons' => [
'checkin/index' => function ($model) {
return Html::a('<div id="notification-container"><span data-pjax=false class="glyphicon glyphicon-user"></span>', Url::to(['checkin/index', 'title' => $model->title]), $options);
}
],
在checkin/index
:
$this->title => $_REQUSET['title'];