从控制器清空Json Ajax响应

时间:2014-08-24 14:32:03

标签: jquery ajax json symfony

我从我看来打电话给控制器:

/**
 * 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 ......

感谢您的帮助!

0 个答案:

没有答案