我遇到此错误,并尝试了每种解决方案,但仍然无法解决。 有人和我有同样的错误吗?
序列化类“ AppBundle \ Entity \ Loisir”的对象时检测到循环引用(配置的限制:1)
我的代码
public function allAction()
{
$Loisirs =$this->getDoctrine()->getManager()
->getRepository('AppBundle:Loisir')->findALL();
$serializer =new Serializer([new ObjectNormalizer()]);
$formatted =$serializer->normalize($Loisirs);
return new JsonResponse($formatted);
}