我使用此表单代码;
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");
}
提交表格时,我不能指定用户数据表格数据。我该怎么办?验证时应该被任命。