我只是看了其他问题,但我找不到解决问题的方法。
我已在localhost上开发了我的应用程序,现在我已将其上传到生产服务器,但我收到了错误"未知实体命名空间别名' AppBundle' "
我的实体类以
开头orm:
auto_generate_proxy_classes: "%kernel.debug%"
naming_strategy: doctrine.orm.naming_strategy.underscore
auto_mapping: true
config.yml
$albums = $this->getDoctrine()
->getRepository('AppBundle:Album')
->findAll();
在我的控制器中,我尝试使用以下方式访问数据:
{{1}}
我希望有人可以帮助我!
感谢所有人!!