我试图创建一个管理器来处理控制器的基本请求(列表,新建,编辑,删除)。我需要在此服务的构造函数中注入表单工厂。我应该叫什么名字?
我需要这样的东西:
lp_ExpedienteManager:
class: AppBundle\Services\ExpedienteManager\ExpedienteManager
arguments: [ "@doctrine.orm.entity_manager", "@security.token_storage", "@form_factory" ]
谢谢你的时间!
答案 0 :(得分:3)
对于将来的引用,从Symfony 3.3开始,此服务可用作Symfony \ Component \ Form \ FormFactoryInterface。所以你可以注入像
这样的服务use Symfony\Component\Form\FormFactoryInterface;
class AccountBridge
{
private $formFactory;
public function __construct(FormFactoryInterface $formFactory)
{
$this->formFactory = $formFactory;
}
public function accountCreateAction(Account $account)
{
$form = $this->formFactory->create(AccountType::class, $account);
}
}