PrestaShop与教义和实体合作

问题描述 投票:0回答:2

Hello :)开始时:我使用PrestaShop 1.7.6.2和MySQL 5.6和PHP 7.2

我想用不带ObjectModel的Symfony Controller和Entities以新的方式创建一个模块(因为比如说说PrestaShop的开发人员之一:Pablo Borowicz-ObjectModel已过时)

因此,一开始我会在链接上创建一个简单的模块https://github.com/DarkSidePro/testmodule

控制器和路由工作完美,问题是当我尝试使用实体管理器时

$entityManager = $this->container->get('doctrine.orm.entity_manager');
$testRepository = $entityManager->getRepository(TestmoduleTest::class);
$test = $testRepository->findAll();

而且我有这样的错误:

在链配置的名称空间PrestaShopBundle \ Entity中找不到类'DarkSide \ Testmodule \ Entity \ TestmoduleTest'>

也许我做错了什么?但是,coures的prestashop的文档吸引了创建PrestaShop模块的新方法

正在寻找4个帮助:)全部Thx :)

Hello :)开始时:我使用PrestaShop 1.7.6.2和MySQL 5.6和PHP 7.2,我想用Symfony Controller和没有ObjectModel的实体以新的方式创建一个模块(因为就像说一个develoeper ...

doctrine prestashop-1.7
2个回答
0
投票

PrestaShop文档完全与Symfony存储库的处理有关。


0
投票

好,问题出在其他方面:)在这种情况下,我的Repository类有问题(可能是此类的构造函数)当我删除它们模块开始工作解决的问题:)

© www.soinside.com 2019 - 2024. All rights reserved.