Symfony2 を使用して AJAX でレコードを挿入/更新しようとしています。JQuery を使用してフォームを送信しています。これが私のコントローラーです:
public function myEntitysAction(){
$em = $this->getDoctrine()->getEntityManager();
$request = $this->getRequest();
$AJAXresponse = array();
$myEntity = new myEntity();
$form = $this->createForm(new myEntityType(), $myEntity);
if ($request->getMethod() == 'POST') {
$form->bindRequest($this->getRequest());
if ($form->isValid()) {
$AJAXResponse['code'] = 'OK';
$em->persist($myEntity);
$em->flush();
}else{
$AJAXResponse['code'] = 'ERR';
}
if ($request->isXmlHttpRequest() == true) {
$response = new Response(json_encode($AJAXResponse));
$response->headers->set('Content-Type', 'application/json');
return $response;
}
}
}
問題は、このコードが正常に挿入されることですが、データを更新できません。挿入し続けます。新しい ID を応答に送り返すことによって更新する方法を自分で実装する必要がありますか、それとも Symfony でそれを自動的に処理する方法はありますか?
どうもありがとうございました。