所以我有這個(gè)表格來創(chuàng)建一個(gè)工作角色,我需要顯示這個(gè)工作角色是活躍的還是休眠的。我使用布爾值 0 和 1 來表示休眠和活動(dòng)。這是我在表單視圖 (form.php) 中的代碼。<?= $form->field($model, 'status')->dropDownList(['1' => 'Active', '0' => 'Dormant'], ['prompt'=>'Select Option']) ?>在我的模型(Application.php)中,我添加了這個(gè)功能public function getStatusLabel() { return $this->status ? 'Active' : 'Dormant'; }然后在我的 index.php 視圖中添加顯示活動(dòng)/休眠。<?= GridView::widget([ 'dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [ ['class' => 'yii\grid\SerialColumn'], [ 'attribute' => 'Status', 'value' => 'statusLabel', ],到目前為止一切正常。唯一的問題是在我的 view.php(查看每個(gè)添加的應(yīng)用程序)中,狀態(tài)仍然顯示 1 和 0。如何在我的 view.php 中也顯示活動(dòng)/休眠?
1 回答

絕地?zé)o雙
TA貢獻(xiàn)1946條經(jīng)驗(yàn) 獲得超4個(gè)贊
您可以將其傳遞給這樣的函數(shù):
<?= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
[
'attribute' => 'Status',
'value' => function ($data) {
return $data->getStatusLabel();
},
],
- 1 回答
- 0 關(guān)注
- 138 瀏覽
添加回答
舉報(bào)
0/150
提交
取消