在第二篇 yii2-basic後臺管理功能開發之二:建立CRUD增刪改查 中,咱們利用gii工具生成的結果通常並非咱們想要的結果。php
咱們須要根據本身的需求自定義列顯示。我遇到的主要是一下變動:html
下面按照順序說一說解決辦法web
一、時間按照yyyy-mm-dd格式顯示數組
1>1咱們能夠經過在columns設置format來設置咱們想要列顯示的格式 。yii2
'columns' => [ 'attribute' => 'createtime', 'format' => ['date', 'php:Y-m-d'] ],
1>2也能夠在web.php中配置日期的顯示格式,下面我配置的都是年-月-日app
'formatter' => [ 'class' => 'yii\i18n\Formatter', 'dateFormat' => 'php:Y-M-d', 'datetimeFormat' => 'php:Y-m-d', 'timeFormat' => 'php:H:i:s', ],
咱們能夠經過調用Yii::$app->formatter相關的方法格式化(推薦)yii
Yii::$app->formatter->asDatetime($newsmodel->createtime);
二、稍微複雜一些,主要有兩種方法,第一種是狀態有值對應的表,經過關聯查詢來將值與名稱對應,第二種是直接在頁面上對應。在這裏偷一個懶,咱們用第二種方法。工具
[ 'label'=>'產品狀態', 'attribute' => 'state', 'value' => function ($model) { $state = [ '0' => '草稿', '1' => '展現中', '2' => '已下線', ]; return $state[$model->state]; }, ],
用數組的方式,將值與名稱對應。post
三、自定義操做this
這個須要去了解而且擴展girdview的代碼,固然了,去看代碼的話,咱們更容易理解前兩個的問題。
個人需求:
用到的操做有[查看][編輯][刪除]還有[上線]等其餘功能
點擊操做以後,執行對應名稱的action
首先來看看ActionColumn類yii\grid\ActionColumn:
1,咱們須要用到的屬性主要有:咱們展現的操做按鈕的模板和展現的按鈕
public $template = '{view} {update} {delete}'; public $buttons = [];
2,須要用的方法
2>1初始化按鈕
/** * Initializes the default button rendering callbacks. */ protected function initDefaultButtons() { if (!isset($this->buttons['view'])) { $this->buttons['view'] = function ($url, $model, $key) { $options = array_merge([ 'title' => Yii::t('yii', 'View'), 'aria-label' => Yii::t('yii', 'View'), 'data-pjax' => '0', ], $this->buttonOptions); return Html::a('<span class="glyphicon glyphicon-eye-open"></span>', $url, $options); }; } if (!isset($this->buttons['update'])) { $this->buttons['update'] = function ($url, $model, $key) { $options = array_merge([ 'title' => Yii::t('yii', 'Update'), 'aria-label' => Yii::t('yii', 'Update'), 'data-pjax' => '0', ], $this->buttonOptions); return Html::a('<span class="glyphicon glyphicon-pencil"></span>', $url, $options); }; } if (!isset($this->buttons['delete'])) { $this->buttons['delete'] = function ($url, $model, $key) { $options = array_merge([ 'title' => Yii::t('yii', 'Delete'), 'aria-label' => Yii::t('yii', 'Delete'), 'data-confirm' => Yii::t('yii', 'Are you sure you want to delete this item?'), 'data-method' => 'post', 'data-pjax' => '0', ], $this->buttonOptions); return Html::a('<span class="glyphicon glyphicon-trash"></span>', $url, $options); }; } }
2>2渲染按鈕內容
/** * @inheritdoc */ protected function renderDataCellContent($model, $key, $index) { return preg_replace_callback('/\\{([\w\-\/]+)\\}/', function ($matches) use ($model, $key, $index) { $name = $matches[1]; if (isset($this->visibleButtons[$name])) { $isVisible = $this->visibleButtons[$name] instanceof \Closure ? call_user_func($this->visibleButtons[$name], $model, $key, $index) : $this->visibleButtons[$name]; } else { $isVisible = true; } if ($isVisible && isset($this->buttons[$name])) { $url = $this->createUrl($name, $model, $key, $index); return call_user_func($this->buttons[$name], $url, $model, $key); } else { return ''; } }, $this->template); }
須要更改的內容: