日期不在响应中显示(symfony3,doctrine)

时间:2018-03-19 15:13:20

标签: symfony datetime doctrine-orm controller

我的控制器:

class LoggingController extends Controller
{
    public function getLogAction()
    {
        $result = $this->getDoctrine()->getRepository(ChangeLog::class)->findAll();
        if ($result === NULL) {
            return new View("Log not found", Response::HTTP_NOT_FOUND);
        }

        return new View($result,Response::HTTP_OK);
    }
}

我的学说orm.yml:

AppBundle\Entity\ChangeLog:
    type: entity
    table: null
    repositoryClass: AppBundle\Repository\ChangeLogRepository
    id:
        id:
            type: integer
            id: true
            generator:
                strategy: AUTO
    fields:
        date:
            type: datetime
#...and other

当我尝试从表中显示记录时,我在日期(日期为空)中收到此消息: enter image description here

但在我的db表中,一切正常: enter image description here 怎么了?所有其他数据通常显示...... 我使用FosRestBundle以JSON格式显示数据。

0 个答案:

没有答案