doudao1369 2014-02-19 10:30
浏览 39
已采纳

Yii - 使用模型函数的CDetailView值(使用模型属性)

Certain class has a property called status (that can be 0 or 1). In the corresponding model I have defined two variables STATUS_CLOSED = 1 and STATUS_OPEN = 2.

I am using a CDetailView to display model info inside a "View" view like:

$this->widget('zii.widgets.CDetailView', array(
    'data'=>$model,
    'attributes'=>array(
        'account_number',
        'account_type',
        array(
            'label'=>'Banco',
            'type'=>'raw',
            'value'=>CHtml::encode($model->bank->bank_name),
        ),
    ),
));

I have defined these two functions in my model:

public function statusLabels()
{
    return array(
        self::STATUS_CLOSED => 'Inactiva',
        self::STATUS_OPEN   => 'Activa',
    );
}

public function getStatusLabel($status)
{
    $labels = self::statusLabels();

    if (isset($labels[$status])) {
        return $labels[$status];
    }

    return $status;
}

I need to customize the CDetailView (possibly using these two functions) to display the corresponding label, depending on the status value.

I thought this would work:

$this->widget('zii.widgets.CDetailView', array(
    'data'=>$model,
    'attributes'=>array(
        'account_number',
        'account_type',
        array(
            'label'=>'Estado',
            'type'=>'raw',
            'value'=>$model->statusLabel($model->status),
        ),
    ),
));

But I get: Missing argument 1 for BankAccount::getStatusLabel()

What I am doing wrong?

展开全部

  • 写回答

1条回答 默认 最新

  • dongyilu3143 2014-02-19 11:21
    关注

    Ok so first off you don't need to send in the status for a model since the model already knows its own status so I would change your function to this:

    public function getStatusLabel() {
        $labels = self::statusLabels();
    
        if (isset($labels[$this->status])) {
            return $labels[$this->status];
        }
    
        return $this->status;
    }
    

    So then your widget would just be like this:

    $this->widget('zii.widgets.CDetailView', array(
        'data'=>$model,
        'attributes'=>array(
            'account_number',
            'account_type',
            array(
                'label'=>'Estado',
                'type'=>'raw',
                'value'=>$model->statusLabel
            ),
        ),
    ));
    

    Also it doesn't cause an error but in reality you should make the function statusLabels() a static function.

    public static function statusLabels() {
        ...
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部