我发现并成功地使用了有关如何重写Sylius中现有模型的文档,但还无法使用SyliusResourceBundle创建一个全新的模型。我猜如果你已经认识symfony2很容易?我还在学习,所以这是我所拥有的…我错过了什么?
我使用一个正在工作的完整的sylius安装作为我的基础,所以我从这里开始http://sylius.org/blog/simpler-crud-for-symfony2我有我自己的“惊人包”设置和几个覆盖和控制器的工作。我将此添加到我的配置中:

sylius_resource:
    resources:
        astound.location:
            driver: doctrine/orm
            templates: AstoundWebBundle:Location
            classes:
                model: Astound\Bundle\LocationBundle\Model\Location

然后我做了:
<?php

namespace Astound\Bundle\LocationBundle\Model;

class Location implements LocationInterface
{
    /**
     * @var mixed
     */
    protected $id;

    /**
     * @var string
     */
    protected $name;

    public function getId()
    {
        return $this->id;
    }

    /**
     * {@inheritdoc}
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * {@inheritdoc}
     */
    public function setName($name)
    {
        $this->name = $name;
    }
}

随着:
<?php

namespace Astound\Bundle\LocationBundle\Model;


interface LocationInterface
{
    /**
     * Get Id.
     *
     * @return string
     */
    public function getId();

    /**
     * Get name.
     *
     * @return string
     */
    public function getName();

    /**
     * Set name.
     *
     * @param string $name
     */
    public function setName($name);
}

在研究Sylius现有模型并查阅条令文件的基础上,我也做了以下工作:
<?xml version="1.0" encoding="UTF-8"?>
<!-- Astound/Bundle/LocationBundle/Resources/config/doctrine/model/Location.orm.xml -->
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping
                    http://raw.github.com/doctrine/doctrine2/master/doctrine-mapping.xsd">

      <mapped-superclass name="Location" table="Locations">
          <id name="id" type="integer">
              <generator strategy="AUTO" />
          </id>

          <field name="name" type="string" />
      </mapped-superclass>
</doctrine-mapping>

有了这个功能,我希望能够运行app/console document:schema:update--dump sql并在数据库中看到名为“locations”的新表,但是我得到了:
无需更新-您的数据库已与当前实体元数据同步。
我在app/console容器:debug中注意到
以下服务:
astound.controller.location位置
容器sylius\bundle\resourcebundle\controller\resourcecontroller
astound.manager.位置
Doctrine.orm.default_Entity_Manager的不适用别名
astound.repository.location网站
容器sylius\bundle\resourcebundle\document\orm\entityrepository
所以我试图在控制器上添加到索引的路由。添加到我的管理主路由配置文件:
astound_location_index:
    pattern: /location
    methods: [GET]
    defaults:
        _controller: astound.controller.location:indexAction

但是,当我尝试在浏览器中转到route*app_dev.php/administration/location*时,我会得到:
找不到类“astund\bundle\locationbundle\model\location”
在链式配置的命名空间中
在写这篇文章的时候再做一些搜索,我发现http://brentertainment.com/other/docs/book/doctrine/orm.html实体文件夹中的php类应该神奇地出现在app/console document:mapping:info或“链式配置的名称空间”中?,但是Sylius在任何地方都没有实体文件夹,所以一定有一些隐藏的魔法正在发生…我猜它在基本包文件里?我尽我所能模仿西尔尤斯的其他包,我做了这个:
<?php

namespace Astound\Bundle\LocationBundle;

use Doctrine\Bundle\DoctrineBundle\DependencyInjection\Compiler\DoctrineOrmMappingsPass;
use Sylius\Bundle\ResourceBundle\DependencyInjection\Compiler\ResolveDoctrineTargetEntitiesPass;
use Sylius\Bundle\ResourceBundle\SyliusResourceBundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;

/**
 * Astound LocationBundle
 */

class AstoundLocationBundle extends Bundle
{
    /**
     * Return array with currently supported drivers.
     *
     * @return array
     */
    public static function getSupportedDrivers()
    {
        return array(
            SyliusResourceBundle::DRIVER_DOCTRINE_ORM
        );
    }

    /**
     * {@inheritdoc}
     */
    public function build(ContainerBuilder $container)
    {
        $interfaces = array(
            'Astound\Bundle\LocationBundle\Model\LocationInterface'         => 'astound.model.location.class',
        );

        $container->addCompilerPass(new ResolveDoctrineTargetEntitiesPass('astound_location', $interfaces));

        $mappings = array(
            realpath(__DIR__ . '/Resources/config/doctrine/model') => 'Astound\Bundle\LocationBundle\Model',
        );

        $container->addCompilerPass(DoctrineOrmMappingsPass::createXmlMappingDriver($mappings, array('doctrine.orm.entity_manager'), 'astound_location.driver.doctrine/orm'));
    }
}

但这给了我这个:
parameterNotFoundException:您请求了不存在的
参数“astound_location.driver”。
我试着在我的配置中添加这个:
astound_location:
    driver: doctrine/orm

但后来我发现这个错误:
fileloaderloadeexception:无法导入资源
“../app/config/astound.yml”来自
“../app/config/config.yml”。(没有)
能够加载“astound_location”配置的扩展(in
…/app/config/astound.yml)。查找命名空间
“惊人的位置”
感谢所有读过以上小说的人!答案必须很简单?!缺少什么?

最佳答案

我遇到了同样的需求,即在扩展sylius的同时创建一个新的模型/实体。我的第一个尝试是将我的新模型添加到sylius_resource的配置中。这导致在运行doctrine:schema:update时出现相同的“无需更新”消息。
经过一些挖掘,我发现我的新模型,我定义为“映射超类”,不同于其他Sylius模型,没有被“神奇地”转换为“实体”,因此Doctrine认为没有必要为它生成数据库表。
所以我想最快的解决办法就是简单地将条令映射从“映射超类”更改为“实体”。例如,在您的示例中:
变化:
模型:astund\bundle\locationbundle\model\location to
型号:astund\bundle\locationbundle\entity\location
和变化:
将超类name=“location”table=“locations”映射到
entity name=“location”table=“位置”
但是,如果您希望将模型保持为映射的超类(并让sylius决定是否应将其转换为实体,以便您可以保持灵活性,以便以后轻松地扩展它),则需要更仔细地了解sylius如何声明它们的包。
遵循SyliusResourceBundle的“高级配置”为我做了一个技巧。

10-06 15:41