当前位置:  开发笔记 > 编程语言 > 正文

如何在Symfony 1.2中获取表单中的用户数据?

如何解决《如何在Symfony1.2中获取表单中的用户数据?》经验,为你挑选了2个好方法。

我在标准的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( '...' ).但是,这似乎不适用于表单.

我该怎么用?



1> cirpo..:

依赖sfContext实例是一个非常糟糕的主意.最好在options数组参数中传递sfForm初始化期间所需的内容.

http://www.symfony-project.org/api/1_4/sfForm

__contruct方法

例如在你的行动中:

$form = new myForm(null, 
                   array('attributeFoo' => 
                         $this->getUser()->getAttribute('attributeFoo'));

然后检索表单类中的值:

$这 - > getOption( 'attributeFoo');

cirpo



2> lpfavreau..:

那样有用吗?

sfContext::getInstance()->getUser()->getAttribute('...');

//编辑:请参阅cirpo关于使用sfContext的建议.

推荐阅读
oDavid_仔o_880
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有