Yii2.0 GridView 的强大功能
Posted 进阶的thinker
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Yii2.0 GridView 的强大功能相关的知识,希望对你有一定的参考价值。
1. 去除头顶的 第1条数据 共两条 代码如下
1 <?= GridView::widget([ 2 ‘dataProvider‘ => $dataProvider, 3 ‘filterModel‘ => $searchModel, 4 ‘columns‘ => [ 5 [‘class‘ => ‘yii\grid\SerialColumn‘], 6 7 ‘id‘, 8 ‘name‘, 9 ‘sort_order‘, 10 ‘status‘, 11 12 [‘class‘ => ‘yii\grid\ActionColumn‘], 13 14 ], 15 ‘layout‘=>"{items}\n{pager}", //去除顶部 16 ]); ?>
2.显示图片
1 [ 2 ‘attribute‘ => ‘thumb_path‘, 3 ‘format‘ => ‘raw‘, 4 ‘value‘ => function($model) { 5 return html::img($model->thumb_path); 6 } 7 ],
后续功能 继续添加
以上是关于Yii2.0 GridView 的强大功能的主要内容,如果未能解决你的问题,请参考以下文章
如何在Android中加载带有动画的cardview GridView?