我在标准的Propel表单类中使用Symfony 1.2.
public function configure() { $this->setWidgets(array( 'graduate_job_title' => new sfWidgetFormInput( array(),array( 'maxlength' => 80,'size' => 30,'value' => '' ) ) )); //etc }
但是,我希望此字段的值来自用户信息,我通常使用$this-> getUser() – > getAttribute(‘…’)访问该信息.但是,这似乎不适用于表单.
我该怎么用?
那样有用吗?
原文链接:https://www.f2er.com/php/135350.htmlsfContext::getInstance()->getUser()->getAttribute('...');
//编辑:请参阅cirpo关于使用sfContext的建议.