Symfony 4 和 Sonata News Bundle 安装过程中出现错误

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

我在安装 SonataNewsBundle 时遇到以下错误。

Unable to register extension "Sonata\FormatterBundle\Extension\ControlFlowExtension" as it is already registered in . (which is being imported from "/home/yoesoff/Documents/projects/oblog/config/routes/sonata_admin.yaml"). Make sure there is a loader supporting the "sonata_admin" type.

Error

并出现以下错误

The target-entity App\Entity\SonataMediaMedia cannot be found in 'App\Entity\SonataClassificationCollection#media'.

enter image description here

我只是按照这里的官方文档进行操作。

有人可以帮忙吗?

php symfony sonata-admin sonata
1个回答
1
投票

文档中缺少一个步骤 - 看起来我们需要手动添加一个额外的包来创建缺少的类:

composer require sonata-project/media-orm-pack

请注意,如果您使用

sonata-project/classification-bundle
,则需要修复
App\Entity\SonataMediaMedia::$category
的注释,如下所示:

/**
 * ORM\ManyToOne(
 *     targetEntity="App\Entity\SonataClassificationCategory",
 *     cascade={"persist"}
 * )
 * ORM\JoinColumn(name="category_id", referencedColumnName="id", onDelete="SET NULL")
 *
 * @var SonataClassificationCategory
 */
protected $category;

如果有帮助,据我了解,我们在使用 Symfony 4 / Flex 时应该跳过

sonata:easy-extends:generate
步骤。

Flex 配方应该在我们的

App\Entity
命名空间中创建类。

如果不这样做,则将类似于上述内容,需要手动添加内容。

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