我的控制器:
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
当我尝试从表中显示记录时,我在日期(日期为空)中收到此消息:
但在我的db表中,一切正常: 怎么了?所有其他数据通常显示...... 我使用FosRestBundle以JSON格式显示数据。