gpt4 book ai didi

mysql - yii2 中的单选按钮值获取

转载 作者:行者123 更新时间:2023-11-29 18:28:55 24 4
gpt4 key购买 nike

在 yii2 中我使用了重播列表

<?= $form->field($model, 'status')->radioList(array('0'=>'Allocate',1=>'aval')); ?>

在数据库中存储 0 或 1 但在 grideview 中如何获取分配或 avl 标记?
请帮助我。

最佳答案

在状态列中尝试此代码:

[
'attribute'=>'status',
'class' => '\kartik\grid\DataColumn',
'headerOptions' => ['style' => 'text-align:center'],
'filter'=>['0'=>'Allocate',1=>'aval'], // filter
'value'=>function($model)
{
if($model->status=='0')
{
return 'Allocate';
}
else
{
return 'Aval';
}
}
],

关于mysql - yii2 中的单选按钮值获取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45893195/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com