Symfony 3在FormType中注入容器

时间:2015-12-29 15:17:34

标签: php symfony

如何在Symfony 3.0中的FormType上注入容器?

我的services.yml文件:

services:
    advertiser.form.report:
        class: App\AdvertiserBundle\Form\ReportType
        arguments: ["@service_container"]

在动作控制器中:

$report = $this->get( 'advertiser.form.report' );
$form = $this->createForm( $report );

我收到了这个错误:

  

“string”,“App \ AdvertiserBundle \ Form \ ReportType”类型的预期参数

2 个答案:

答案 0 :(得分:1)

请改用表格工厂。

在配置中:

services:
    advertiser.form.report:
        class:  'Symfony\Component\Form\Form'
        factory: ['@form.factory', 'create']
        arguments: [App\AdvertiserBundle\Form\ReportType, null, {container: '@service_container'}]

在表单中添加container到可能的表单选项:

/**
 * @param OptionsResolver $resolver
 */
public function configureOptions(OptionsResolver $resolver)
{
    $resolver->setDefaults([
        'container' => null,
        //The rest of options
    ]);
}

并根据需要使用它:

public function buildForm(FormBuilderInterface $builder, array $options)
{
    $container = $options['container'];
    //The rest of logic
}

在您的控制器中,只需使用表单:

$this->get('advertiser.form.report'); //It's a ready-to-use form, you don't need to call $this->createForm()

答案 1 :(得分:0)

在评论中,修复很容易;你应该这样做:

$form = $this->createForm(ReportType::class);

无论如何,我强烈建议你不要在任何课堂上注射整个容器。最好只注入所需的服务。