使用gridview在yii2中显示数据提供者的数据

时间:2017-09-25 12:00:24

标签: gridview yii2 dataprovider

我想在数据提供者中显示我所拥有的所有信息,如下所示:

Array
(
[status] => 1
[data] => Array
    (
        [user_id] => 6
        [nombre] => Carlos
        [apellidos] => Morales
        [telefono] => 55555
        [perfil] => Persona
    )

[documentos] => Array
    (
        [0] => Array
            (
                [iddocumento] => 3
                [ruta] => 2.jpg
                [nombre] => 2
                [tamano] => 94372
                [extension] => jpg
                [user_id] => 6
            )
  )

我可以用gridview完美地显示有关数据的信息,但是文档是不可能的。我怎么能这样做?。

我有这个:

<?=GridView::widget([
'dataProvider'=>$dataProvider,
'columns' => [
          ['class' => 'yii\grid\SerialColumn'],
          [
              'attribute' => 'nombre',
              'label' => 'Nombre de Persona'
          ],
          [
              'attribute' => 'apellidos',
              'label' => 'Apellidos'
          ],
          [
              'attribute' => 'telefono',
              'label' => 'Teléfono'
          ],
      ]
  ])?>

有可能吗?感谢

1 个答案:

答案 0 :(得分:0)

问题是您的数据数组一维和 documentos 数组是多维的。您必须使用arraymap函数将 documentos 数组缩减为一维数组。

 $one_dimensional_array =  array_map('current' , $documentos_array)