php – 使用yii2的gridview与正常的数据数组

前端之家收集整理的这篇文章主要介绍了php – 使用yii2的gridview与正常的数据数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个非常相似的数据数组
[
    'name'=>'mark','age'=> '21'
    'height'=> '190 cm'
]

搜索了Google,我发现所有的结果都使用了一个活动的记录对象.

我如何使用gridview与这种数组?

你应该使用ArrayDataProvider( https://github.com/yiisoft/yii2/blob/master/framework/data/ArrayDataProvider.php)
$provider = new ArrayDataProvider([
    'allModels' => $yourArray,'sort' => [
        'attributes' => ['id','username','email'],],'pagination' => [
        'pageSize' => 10,]);
原文链接:https://www.f2er.com/php/139724.html

猜你在找的PHP相关文章