标签:size 状态 content com record 功能 nic 表格 ble
<?= DetailView::widget([ // 调用 DetailView::widget() 方法
‘model‘ => $model, // model 这里可以是一个模型类的实例,也可以是一个数组
‘attributes‘ => [ // attributes 属性决定显示模型的那些属性以及如何格式化
‘content:ntext‘,
‘tags:ntext‘,
[‘label‘=>‘状态‘,
‘value‘=>$model->status0->name
],
[‘attribute‘=>‘author_id‘, // 更常用的展示管理表字段的方式
‘value‘=>$model->author->nickname,
‘label‘=>‘作者ID‘,
],
[‘attribute‘=>‘create_time‘, // 格式化时间
‘value‘=>date(‘Y-m-d H:i:s‘,$model->create_time),
],
],
// ‘template‘ 属性调整表格每一行的样式
‘template‘ => ‘<tr><th style="width: 120px;">{label}</th><td>{value}</td></tr>‘,
// ‘options‘ 属性调整真个 table 的样式
‘options‘ => [‘class‘ => ‘table table-striped table-bordered detail-view‘],
]) ?>
注:本文为作者(44106-kangaroo) 看完魏羲教你学Yii2.0 视频后所记,如有转载请注明出处:http://www.cnblogs.com/chrdai/p/8006765.html
标签:size 状态 content com record 功能 nic 表格 ble
原文地址:http://www.cnblogs.com/chrdai/p/8006765.html