我从我看来打电话给控制器:
/**
* Flush new chat message.
*
* @Route("/commande/returnMsg", name="new_chat_msg_print", options={"expose"=true})
*/
public function ajaxReturnListAction(Request $request)
{
$repository = $this->getDoctrine()
->getManager()
->getRepository('MyAwesomeBundle:Chat');
$listeMsg = $repository->findAll();
return new Response(json_encode($listeMsg), 200);
}
在“聊天”实体中,我有4个字段。 但是控制器返回一个空的json结果......
[{},{},{},{},{},{},{}]
我不知道如何获取数据并将它们返回到json ......
感谢您的帮助!