获取错误:无法使用Symfony2 JMSPaymentCoreBundle加载“jms_choose_payment_method”类型

时间:2012-04-27 07:41:26

标签: php symfony

我昨天尝试安装JMSPaymentCoreBundle的主分支,并尝试使用文档中的一些代码。

执行

$this->getFormFactory()->create('jms_choose_payment_method'...

我收到了错误:

无法加载类型“jms_choose_payment_method”

我用deps文件安装了bundle。我已经完成了registerBundle(在AppKernel.php中)和registerNamespace(在autoload.php中)。我可以看到文件vendor \ bundles \ JMS \ Payment \ CoreBundle \ Form \ ChoosePaymentMethodType.php存在,而vendor \ bundles \ JMS \ Payment \ CoreBundle \ Resources \ config \ payment.xml确实包含:

<?xml version="1.0" ?>

<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">

<parameters>
...
    <parameter key="payment.form.choose_payment_method_type.class">JMS\Payment\CoreBundle\Form\ChoosePaymentMethodType</parameter>
...
</parameters>

<services>
...
    <service id="payment.form.choose_payment_method_type" class="%payment.form.choose_payment_method_type.class%">
        <argument type="service" id="payment.plugin_controller" />
        <tag name="form.type" alias="jms_choose_payment_method" />
    </service>
</services>
</container>

我做错了吗?或者,这是一个错误吗?

1 个答案:

答案 0 :(得分:1)

此捆绑包目前仅适用于symfony 2.1