我想在模型中使用一些属性作为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作为普通属性.
原文链接:https://www.f2er.com/php/130376.html所以你有你的模板:
$form->dropDownList( $formModel,'fullName'),array() );
在你的模型中:
public function getFullName() { return $this->attribute1.' '.$this->attribute2.' ('.$this->attribute3.')'; }