1

我正在尝试创建一个显示字形图标的列。字形图标将链接到允许用户下载文件的 url。任何帮助将不胜感激。当前代码如下:

GridView::widget([
'dataProvider' => $dataProvider,
'pager' => [
    'class' => 'common\widgets\Pagination',
],
'columns' => [
    ['class' => 'yii\grid\SerialColumn'],
    [
        'label' => 'Date',
        'attribute' => 'call_datetime',
        'format' => 'date',
    ],
    [
        'label' => 'Time',
        'attribute' => 'call_datetime',
        'format' => 'time',

    ],
    'call_from',
    'call_to',
    'duration',
    'call_type',
    'extension',

    [
        'label' => 'File',
        'attribute' => 'fname',
        'value' => 'callRecFiles.fname',
    ],

这是用户将要下载的最后一个属性“fname”。

4

1 回答 1

1

fname将您的字段数组更改为:

[
    'label' => 'File',
    'attribute' => 'fname',
    'value' => function($model) {
         //here create glyphicon with URL pointing to your action where you can download file, something like 
         return $model->callRecFiles ? Html::a('Download', ['myController/download-action', 'fname' => $model->callRecFiles->fname]) : null;
    }
],

并准备适当的动作以允许用户下载文件。

于 2017-08-03T10:33:57.637 回答