5

我的 services.xml 中有服务

<service id="my.connection" class="Doctrine\Bundle\DoctrineBundle\ConnectionFactory">
</service>

<service id="my.main" class="%my.main.class%">
    <call method="foo">
        <argument type="service" id="tmcyc.connection" />
    </call>
</service>

但出现错误:

可捕获的致命错误:传递给 Doctrine\Bundle\DoctrineBundle\ ConnectionFactory::__construct() 的参数 1 必须是一个数组,没有给出...

如何传递带参数的数组?例如:

<service id="my.connection" class="Doctrine\Bundle\DoctrineBundle\ConnectionFactory">
    <argument>[ARRAY]</argument>
</service>

或者我做错了什么?因为这段代码工作得更好:

$connectionFactory = $this->getContainer()->get('doctrine.dbal.connection_factory');
$conn = $this->createConnection($this->conn);
$conn->executeQuery('SET NAMES utf8');
4

3 回答 3

17

他的例子应该阐明原则:

*.yml 中

some_id: 
    class: %some.class%
    arguments: 
        - %some.argument%, 
        - [tags: [environment: %kernel.environment%, debug:%kernel.debug%]]

*.xml中

<service id="some_id" class="%some.class%">
    <argument>%some.argument%</argument>
    <argument type="collection">
        <argument key="tags" type="collection">
            <argument key="environment">%kernel.environment%</argument>
            <argument key="debug">%kernel.debug%</argument>
        </argument>
    </argument>
</service>
于 2014-12-17T00:02:10.343 回答
1

好的,找到答案了

<service id="my.connection" class="Doctrine\Bundle\DoctrineBundle\ConnectionFactory">
    <argument>%doctrine.dbal.connection_factory.types%</argument>
</service>
于 2013-02-22T11:46:19.137 回答
0

与参数相同

*.xml中

    <parameter key="some.key" type="collection">
        <parameter>parameter 1</parameter>
        <parameter>parameter 2</parameter>
    </parameter>
于 2018-03-29T16:18:28.250 回答