view层显示的代码
<?= DetailView::widget([
'model' => $model,
'attributes' => [
'news_id',
[
'label' => '栏目名',
'value' => $model->findCateName()->catname
],
'title',
'description',
'content:ntext',
'inputtime:datetime',
[
'label' => '状态',
'value' => $model->status == 1 ? '启用' : '禁用'
]
],
]) ?>
上图为显示的内容,我不想让它转义,怎么处理??
内容格式化一下
‘format’=>’html’,
你存的内容不对吧?看看数据库中存的内容,是不是转成其他格式了,使用ntext是可以正常显示html的。