我尝试从由 AbstractType 扩展的 FormType 访问服务。我怎样才能做到这一点?
谢谢!
作为基于先前答案/评论的完整答案:
为了从您的表单类型访问服务,您必须:
1)将您的表单类型定义为服务并将所需的服务注入其中:
# src/AppBundle/Resources/config/services.yml
services:
app.my.form.type:
class: AppBundle\Form\MyFormType # this is your form type class
arguments:
- '@my.service' # this is the ID of the service you want to inject
tags:
- { name: form.type }
2)现在在您的表单类型类中,将其注入构造函数:
// src/AppBundle/Form/MyFormType.php
class MyFormType extends AbstractType
{
protected $myService;
public function __construct(MyServiceClass $myService)
{
$this->myService = $myService;
}
public function buildForm(FormBuilderInterface $builder, array $options)
{
$this->myService->someMethod();
// ...
}
}
只需通过构造函数将您想要的服务注入表单类型。
class FooType extends AbstractType
{
protected $barService;
public function __construct(BarService $barService)
{
$this->barService = $barService;
}
public function buildForm(FormBuilderInterface $builder, array $options)
{
$this->barService->doSomething();
// (...)
}
}
查看sympfony 文档中的此页面,了解如何将表单类型声明为服务。该页面有很多很好的文档和示例。
Cyprian 走在正确的轨道上,但链接页面更进一步,将您的表单类型创建为服务并让 DI 容器自动注入服务。