Symmfony&Sonata:如何从AbstractAdmin扩展访问EntityManagerInterface?

问题描述 投票:-1回答:1

我有一个扩展AbstractAdmin的类。我尝试用:

注入EntityManagerInterface
namespace App\Admin;

use Sonata\AdminBundle\Admin\AbstractAdmin;
use Sonata\AdminBundle\Datagrid\ListMapper;
use Sonata\AdminBundle\Datagrid\DatagridMapper;
use Sonata\AdminBundle\Form\FormMapper;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\Extension\Core\Type\TextareaType;
use Symfony\Component\Form\Extension\Core\Type\EmailType;
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
use Symfony\Component\Form\Extension\Core\Type\CountryType;
use Symfony\Component\Validator\Constraints\NotBlank;
use Symfony\Component\Validator\Constraints\Length;
use Symfony\Component\Form\FormEvent;
use Symfony\Component\Form\FormInterface;
use Symfony\Component\Form\FormEvents;
use Symfony\Bridge\Doctrine\Form\Type\EntityType;
use Doctrine\ORM\EntityManagerInterface;

    final class TotoAdmin extends AbstractAdmin
    {    
        /**
         * @var EntityManagerInterface
         */
        private $em;

        /**
         * @param EntityManagerInterface $em
         */
        public function __construct(EntityManagerInterface $em)
        {
            $this->em = $em;
        }

这将导致页面空白。当我做

php bin/console cache:clear

我收到错误:

  Argument 1 passed to App\Admin\ClientAdmin::__construct() must implement interface Doctrine\ORM\EntityManagerInterface, string given, c  
  alled in /var/www/projects/csiquote/var/cache/dev/ContainerF5etCaE/getAdmin_CategoryService.php on line 26 

我想念什么?

symfony sonata construct
1个回答
0
投票

您正在扩展已经具有__construct的类

[当我在Sonata's github AbstractAdmin.php上查询时原始的类构造函数是

 /**
 * @param string $code
 * @param string $class
 * @param string $baseControllerName
 */
public function __construct($code, $class, $baseControllerName)
{
    $this->code = $code;
    $this->class = $class;
    $this->baseControllerName = $baseControllerName;
    $this->predefinePerPageOptions();
    $this->datagridValues['_per_page'] = $this->maxPerPage;
}

因此,如果需要像EntityManagerInterface这样的额外依赖项,可以复制原始文件并将新文件添加到末尾。然后也调用父构造函数

 private $em;

/**
 * @param string $code
 * @param string $class
 * @param string $baseControllerName
 * @param EntityManagerInterface $em
 */
public function __construct($code, $class, $baseControllerName, EntityManagerInterface $em)
{
    parent::__construct($code, $class, $baseControllerName);

    $this->em = $em;
}

另一件事是,您需要将其配置为服务according to the docs

services:
    App\Admin\TotoAdmin:
        arguments: [~, ~, ~, '@doctrine.orm.entity_manager']

我认为应该起作用

© www.soinside.com 2019 - 2024. All rights reserved.