yii2 DetailView 相关问题
yii2 2017-05-05 11:01:37

 1、内容实体转换:

只需要把'store_content:ntext'改成'store_content:raw' 即可完成转换

PHP Code复制内容到剪贴板
  1. <?= DetailView::widget([  
  2.     'model' => $model,  
  3.     'template' => '<tr><td width="80">{label}</td><td>{value}</td></tr>',  
  4.     'attributes' => [  
  5.         'id',  
  6.         'category_id',  
  7.         'title',  
  8.         'content:raw',  
  9.         'titlepic',  
  10.         [                      // the owner name of the model  
  11.             'attribute' => 'created_at',  
  12.             'value' => date("Y-m-d H:i:s",$model->created_at),  
  13.         ],  
  14.     ],  
  15. ]) ?>  

 

2、DetailView可以自由定义样式

PHP Code复制内容到剪贴板
  1. <?= DetailView::widget([  
  2.     'model' => $model,  
  3.     'attributes' => [  
  4.         'uid',  
  5.         ['label'=>'gender','value'=>$model->getGenderText()],  
  6.     ],  
  7.     'template' => '<tr><th>{label}</th><td>{value}</td></tr>',   
  8.     'options' => ['class' => 'table table-striped table-bordered detail-view'],  
  9. ]) ?>  

 

本文来自于:http://www.yoyo88.cn/study/yii2/106.html

Powered by yoyo苏ICP备15045725号