如何在yii2中修改视图页面值?

时间:2016-06-07 11:22:57

标签: yii2

在yii2中,View包含数据库中的值。想要将值修改为用户定义的值,例如数据库值为1,我想显示是。

[
        'attribute'=>'status',
        'value'=>if(Status==1){ return 'yes' }else{return 'No' },
        ],

1 个答案:

答案 0 :(得分:1)

您不能在详细视图中使用if条件。使用条件运算符 请尝试以下代码,

 [
  'attribute'=>'status',

  'value'=>$model->status=='1'? 'Yes':'no', ],