Symfonyで編集フォームを作ってみた
public function editAction()
{
$id = 5;
$em = $this->getDoctrine()->getEntityManager();
$request = $this->get('request');
$entity = $em->getRepository('SurgeryPatientBundle:Patients')->find($id);
$form = $this->createForm(new \Surgery\PatientBundle\Form\PatientsType(), $entity);
$form->bindRequest($request);
return $this->render('SurgeryPatientBundle:Patient:newpatient.html.twig',array('form'=>$form->createView()));
if($form->isValid())
{
//do someting
}
else
{
//do something
}
}
私はまだデータなしで空のフォームを取得します.変数$entity
は設定されています. フォームを挿入しましたが、編集アクションでは処理できません。ターミナルを使用してフォームを作成したくありませんphp app/console
。その方法を知りたいからです。