php – 带有复杂$textField的CHtml :: listData

前端之家收集整理的这篇文章主要介绍了php – 带有复杂$textField的CHtml :: listData前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在模型中使用一些属性作为textField.像这样的东西:
$form->dropDownList(
    $formModel,'ref_attribute',CHtml::listData(
        User::model()->findAll(array('order'=>'attribute1 ASC,attribute2 ASC')),'id','attribute1 attribute2 (attribute3)'),array()
);

以便’attribute1 attribute2(attribute3)’自动转换为正确的属性值.我试过“按原样”编写它(‘attribute1 attribute2(attribute3)’),并在模型中创建一个中间函数(fullName()),但似乎没有任何效果.

提前致谢.

可以在Model类中创建一个额外的方法.您必须创建一个getter并将其用作 with the yii magic作为普通属性.

所以你有你的模板:

$form->dropDownList(
    $formModel,'fullName'),array()
);

在你的模型中:

public function getFullName()
{
    return $this->attribute1.' '.$this->attribute2.' ('.$this->attribute3.')';
}
原文链接:https://www.f2er.com/php/130376.html

猜你在找的PHP相关文章