首页 > 解决方案 > 未转换为 json 的实体列表,而是我得到一个空对象数组

问题描述

我有以下代码:

public function adminListAction(Request $request)
{
    if (!$this->isGranted('ROLE_ADMIN')) {
        return new JsonResponse("Not granted");
    }

    $page = $request->query->get('page', 1);

    $criteria = new DocumentaryCriteria();
    $criteria->setStatus(DocumentaryStatus::PUBLISH);
    $criteria->setSort([
        DocumentaryOrderBy::CREATED_AT => Order::DESC
    ]);

    $qb = $this->documentaryService->getDocumentariesByCriteriaQueryBuilder($criteria);

    $adapter = new DoctrineORMAdapter($qb, false);
    $pagerfanta = new Pagerfanta($adapter);
    $pagerfanta->setMaxPerPage(12);
    $pagerfanta->setCurrentPage($page);

    $items = (array) $pagerfanta->getCurrentPageResults();

    $data = [
        'items'             => $items,
        'count_results'     => $pagerfanta->getNbResults(),
        'current_page'      => $pagerfanta->getCurrentPage(),
        'number_of_pages'   => $pagerfanta->getNbPages(),
        'next'              => ($pagerfanta->hasNextPage()) ? $pagerfanta->getNextPage() : null,
        'prev'              => ($pagerfanta->hasPreviousPage()) ? $pagerfanta->getPreviousPage() : null,
        'paginate'          => $pagerfanta->haveToPaginate(),
    ];

    return new JsonResponse($data);
}

它返回以下内容,注意空对象数组

{“项目”:[ {},{},{},{},{},{},{},{},{}],“count_results”:9,“current_page”:1,“number_of_pages”: 1、“下一个”:空,“上一个”:空,“分页”:假}

通过这样做,我知道它们的属性不为空:

foreach ($items as $item) {
    echo $item->getTitle();
}

// 返回“纪录片 1”

标签: phpsymfonysymfony4fosrestbundlepagerfanta

解决方案


问题很可能是您的$item对象不是 json 可序列化的。

尝试JsonSerializable在该类中实现接口(https://www.php.net/manual/en/class.jsonserializable.php)并向您的item类添加一个方法,如下所示:

public function jsonSerialize() {
    return [
        'title' => $this->getTitle(),
         'foo' => $this->bar(),
     ];
 }

推荐阅读