Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过 CRUD 在 yii1 中创建管理面板。在列表部分显示带有状态的新闻(1 和 2)。但我需要显示“发布”和“存档”而不是 1 和 2。我这样做是有目的的,但这种方式是错误的。我该怎么做?
zii.widgets.grid.CGridView如果您使用它,您可以尝试更改。像这样的东西:
zii.widgets.grid.CGridView
'columns' => [ [ 'type' => 'html', 'name' => 'status', 'value' => '"<div class=helper>". (1 === $data->status) ? 'Archive' : 'Publish' ."</div>"', 'htmlOptions' => ['data-label' => 'Status'] ],