Symfony2将表单数据设置为Auth User Class

时间:2014-03-05 21:58:58

标签: php forms validation symfony

我使用此表单代码;

public function accountAction(Request $request)
    {                   
        $user = $this->getUser();
        $account_form = $this->createForm(new SettingAccountForm(), $user);

        $account_form->handleRequest($request);
        if ($account_form->isValid()) 
        {           
            $em = $this->getDoctrine()->getManager();
            $em->flush();
        }

        return new Response("ok");
    }

提交表格时,我不能指定用户数据表格数据。我该怎么办?验证时应该被任命。

0 个答案:

没有答案