gpt4 book ai didi

gridview - 为什么我无法更改 GridView 中的值?

转载 作者:行者123 更新时间:2023-12-02 09:33:27 26 4
gpt4 key购买 nike

尝试将输入值替换为用户表列状态,如果等于 0,则将其状态更改为已阻止,如果等于 10,则将其更改为事件。

 GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
'username',
'email:email',
'status',
'value' => function ($model){
return $model->status==10 ? "Active":"Blocked";
},


['class' => 'yii\grid\ActionColumn'],
],
]);

但显示错误:array_merge():参数 #2 不是数组我做错了什么,请告诉我

最佳答案

属性status应该这样声明:

[
'attribute' => 'status',
'value' => function ($model) {
return $model->status == 10 ? 'Active' : 'Blocked';
},
],

所以整个GridView看起来像这样:

<?= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
'username',
'email:email',
[
'attribute' => 'status',
'value' => function ($model) {
return $model->status == 10 ? 'Active' : 'Blocked';
},
],
['class' => 'yii\grid\ActionColumn'],
],
]) ?>

但建议使用另一种方法。

放置在模型中:

const STATUS_BLOCKED = 0;

const STATUS_ACTIVE = 10;

/**
* @return array
*/
public static function getStatusesList()
{
return [
self::STATUS_BLOCKED => 'Blocked',
self::STATUS_ACTIVE => 'Active',
];
}

/**
* @return string
*/
public function getStatusLabel()
{
return static::getStatusesList()[$this->status];
}

现在您可以将关闭内容替换为:

return $model->getStatusLabel();

关于gridview - 为什么我无法更改 GridView 中的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30276227/

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