-3

这是我的问题。

我目前正在学习 Symfony,并且我创建了一个带有 formType 文件和 formHandler 的表单。我现在想在我的处理程序中使用表单的值,但我不知道如何调用这些值,我可以使用哪种方法?我尝试了许多请求类的方法,但它不起作用。请问你能帮帮我吗?

这是我的处理程序。我的一些尝试仍在评论中,它很简单,我只是想做一个回应。

class adminFormHandler
{
    protected $form;
    protected $request;
    protected $em;

    public function __construct(Form $form, Request $request, EntityManager $em)
    {
        $this->form    = $form;
        $this->request = $request;
        $this->em      = $em;
    }

    public function process()
    {
        if( $this->request->getMethod() == 'POST' )
        {
            $this->form->bindRequest($this->request);

            //if( $this->form->isValid() )
            //{
                //echo $this->request->get('nom');
                //$param = $this->request->request->keys();
                //$param = $this->form->getData(nom);
                //echo $param;
                $myfield = $form->getAttribute('nom');
                echo $myfield->getData();
                //echo $param;//$this->form->get('nom')->getText();
                //$this->onSuccess($this->form->getData());

                return true;
            //}
        }

        return false;
    }

    public function onSuccess1(/*Students $students*/)
    {
        //$this->em->persist($students);
        //$this->em->flush();
        echo'on success 1';
    }

    public function onSuccess2()
    {
        //$this->em->persist($students);
        //$this->em->flush();
        echo'on success 2';
    }
}
4

1 回答 1

2

您可以使用:

$data = $this->form->getData();
$myfield = $data['nom'];

或者

$myfield = $this->form->get('nom')->getData();
于 2012-09-13T12:28:15.123 回答