JMS 序列化程序不适用于具有 FOSRest 的自定义存储库方法



我在设置 JMS Serializer 和 FOSRestBundle 以序列化此自定义存储库方法时遇到问题。

如果我使用$schedules = $em->getRepository('RadioBundle:Schedule')->findAll();它工作正常,但是当我尝试自定义方法时,不会排除任何字段。

有人可以帮我解决问题所在吗?

控制器:

use RadioBundleEntitySchedule;
use SymfonyComponentHttpFoundationRequest;
use FOSRestBundleControllerAnnotationsView;

class ScheduleController extends BaseController
{
    /**
     * @param $date
     * @return SymfonyComponentHttpFoundationResponse
     * @View(serializerGroups={"schedule"})
     */
    public function getSchedulesScheduleAction($date)
    {
        $em = $this->getDoctrine()->getManager();
        list($startDate, $endDate) = $this->get('radio.utils.date_and_time')->findWeekRange($date);
        $schedules = $em->getRepository('RadioBundle:Schedule')->findByRange($startDate, $endDate);
        $view = $this->view(
            [
                'schedules' => $schedules,
            ],
            200
        );
        return $this->handleView($view);
    }
}

存储库方法:

class ScheduleRepository extends EntityRepository
{
    /**
     * @param DateTime $startDate
     * @param DateTime $endDate
     * @return array
     */
    public function findByRange(DateTime $startDate, DateTime $endDate)
    {
        $em = $this->getEntityManager();
        $qb = $em->createQueryBuilder();
        $qb->select('s')
            ->from('RadioBundle:Schedule', 's')
            ->leftJoin('s.radioShow', 'rs')
            ->add(
                'where',
                $qb->expr()->between(
                    's.startTime',
                    ':from',
                    ':to'
                )
            )
            ->orderBy('s.startTime', 'asc')
            ->andWhere('rs.isActive = true')
            ->setParameters(['from' => $startDate, 'to' => $endDate]);
        return $qb->getQuery()->getArrayResult();
    }
}

如果使用 getArrayResult() 从方法返回结果,则会生成嵌套数组而不是实体对象。

JMSSerializer 需要知道要序列化哪些类才能加载正确的元数据。因此,您可能应该改用getResult()

相关内容

  • 没有找到相关文章

最新更新