将 yii2 的 gridview 与普通数据数组一起使用 [英] Using yii2's gridview with a normal array of data

查看:26
本文介绍了将 yii2 的 gridview 与普通数据数组一起使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一组与此非常相似的数据

<预><代码>['name'='mark','年龄'=>'21''高度'=>'190 厘米']

我搜索了谷歌,我找到的所有结果都使用了活动记录对象.

如何将 gridview 与此类数组一起使用?

解决方案

你应该使用 ArrayDataProvider (https://github.com/yiisoft/yii2/blob/master/framework/data/ArrayDataProvider.php)

$provider = new ArrayDataProvider(['allModels' =>$你的数组,'排序' =>['属性' =>['id', '用户名', 'email'],],'分页' =>['页面大小' =>10、],]);

I have an array of data very similar to this

[
    'name'=>'mark',
    'age'=> '21'
    'height'=> '190 cm'
]

I searched Google and all the results i found were using an active record object.

How do i use the gridview with an array of this sort?

解决方案

You should use 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,
    ],
]);

这篇关于将 yii2 的 gridview 与普通数据数组一起使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆