首页 > 解决方案 > 找不到服务“fos_elastica.finder.app.user”

问题描述

Symfony 找不到 fos_elastica 的服务

Service "fos_elastica.finder.app.user" not found: even though it exists in the app's container, the container inside "App\Controller\DevController" is a smaller service locator that only knows about the "doctrine", "form.factory", "http_kernel", "parameter_bag", "request_stack", "router", "security.authorization_checker", "security.csrf.token_manager", "security.token_storage", "session" and "twig" services. Unless you need extra laziness, try using dependency injection instead. Otherwise, you need to declare it using "DevController::getSubscribedServices()".

我的配置

# Read the documentation: https://github.com/FriendsOfSymfony/FOSElasticaBundle/blob/master/Resources/doc/setup.md
fos_elastica:
    clients:
        default: { host: localhost, port: 9200 }
#    indexes:
#        app: ~
    indexes:
        app:
            client: default
            types:
                user:
                    properties:
                        username: ~
#                    mappings:
#                        email: ~
                    persistence:
                        # the driver can be orm, mongodb, phpcr or propel
                        # listener and finder are not supported by
                        # propel and should be removed
                        driver: orm
                        model: App\Entity\User
                        provider: ~
                        listener: ~
                        finder: ~

我的控制器:

    /**
     * @Route("/search")
     */
    public function searchElastic(){
        /** var array of App\Entity\User */
        $finder = $this->container->get('fos_elastica.finder.app.user');
        return new response('N/A');
    }

命令php bin/console fos:elastica:populate没有抛出任何错误,并且在 phpstorm 中没有突出显示(这意味着 phpstorm 找到了它)

请帮我。

标签: symfonyelastica

解决方案


您应该像这样使用依赖注入:

在控制器类中添加use语句use FOS\ElasticaBundle\Manager\RepositoryManagerInterface;,然后您的操作应如下所示:

/**
 * @Route("/search")
 */
public function searchElastic(RepositoryManagerInterface $finder) {

    $someResult = $finder->getRepository(User::class)->find(...);
    return new response('N/A');
}

推荐阅读