我正在尝试使用Yii2框架开发系统。
我的数据库中有数据,我想显示products表中的所有数据。例如:
产品表

---------------------------------------------------------------------
**id** | **product** | **color**   | **quantity**   |    **size**   |

  1    |    t-shirt  |     red     |       2        |     L         |
  2    |    t-shirt  |     blue    |       3        |     M         |
  3    |    pants    |     black   |       6        |     M         |

我想在index.php中将这些数据显示给kartik gridview。但是我想用product而不是id来显示数据,所以我的预期结果是这样的my index.php
预期结果
product   |   quantity    |

 t-shirt  |      5        |
 pants    |      6        |

我的预期结果避免,颜色和大小。它将所有相同的产品合并到gridview的一列中。
我怎么能这样?
这是我在index.php中的代码:
  <?php
   use kartik\grid\GridView;

  <?= GridView::widget([
    'dataProvider' => $dataProvider,
    'columns' => [
        ['class' => 'yii\grid\SerialColumn',
            'header' => 'No',
        ],
        [
            'label' => 'product',
            'value' => function($data) {
               return $data->product;
            }
        ],

        [
            'label' => 'quantity',
            'value' => function($data) {
               return $data->quantity;
            }
        ],
        ['class' => 'yii\grid\ActionColumn'],
    ],
    'toolbar' => [
        ['content' =>
            Html::a('<i class="glyphicon glyphicon-repeat"></i>', ['index'], ['data-pjax' => false, 'class' => 'btn btn-default', 'title' => 'Reset Grid'])
        ],
        '{export}',
        '{toggleData}'
    ],
    'panel' => [
        'heading' => '<i class="glyphicon glyphicon-align-left"></i>&nbsp;&nbsp;<b>Products List</b>',
        'before' => '', //IMPORTANT
    ],
]);
?>

如果我使用上面的代码,我会得到这样的结果:
    product   |   quantity    |

     t-shirt  |      2        |
     t-shirt  |      3        |
     pants    |      6        |

任何帮助都将不胜感激。谢谢

最佳答案

使用:
http://www.yiiframework.com/doc-2.0/yii-data-sqldataprovider.html
在sql中使用group by,count ect。。。
在GridView中,列的用法如下:

[
    'label' => 'product',
    'value' => function($data) {
        return $data['product'];
    },
],

关于php - Yii2:在Kartik GridView的一列中显示来自SQL的具有相同值的数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41345617/

10-10 16:42
查看更多