Symfony 4: Event listener Cannot autowire UserInterface(Symfony 4:事件侦听器无法自动布线用户界面)
本文介绍了Symfony 4:事件侦听器无法自动布线用户界面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我将UserInterface添加到我的事件侦听器时,出现以下错误:
Cannot autowire service "AppEventListenerControllerListener": argument "$user" of method "__construct()" references interface "SymfonyComponentSecurityCoreUserUserInterface" but no such service exists. It cannot be auto-registered because it is from a different root namespace.
我不知道发生了什么,其他服务都运行得很好。
你能找找代码,告诉我我做错了什么吗?
~src/EventListener/ControllerListener.php
<?php
namespace AppEventListener;
use AppEntityUser;
use AppEntityDailyWin;
use AppControllerDailyWinController;
use PsrLogLoggerInterface;
use SymfonyComponentSecurityCoreUserUserInterface;
use SymfonyBundleFrameworkBundleControllerController;
use SymfonyComponentHttpKernelEventFilterControllerEvent;
use SymfonyComponentSecurityCoreAuthorizationAuthorizationCheckerInterface;
class ControllerListener extends Controller implements DailyWinController
{
private $authChecker, $user, $logger;
public function __construct(UserInterface $user, AuthorizationCheckerInterface $authChecker, LoggerInterface $logger) {
$this->user = $user;
$this->authChecker = $authChecker;
$this->logger = $logger;
}
public function onKernelController(FilterControllerEvent $event) {
if ($this->authChecker->isGranted('IS_AUTHENTICATED_FULLY') === false) return;
$this->logger->warning('Inicjowanie...');
$em = $this->getDoctrine()->getManager();
$DWrep = $em->getRepository(DailyWin::class);
$userId = $this->user->getId();
$userDailyWin = $DWrep->findOneBy(['userId' => $userId]);
$this->logger->warning(print_r($userDailyWin));
if (empty($userDailyWin)) {
$currentDate = new DateTime(date('Y-m-d', time()));
$userDailyWin = new DailyWin();
$userDailyWin->setUserId($userId);
$userDailyWin->setMultiplier(0);
$userDailyWin->setClaimed(0);
$userDailyWin->setStreak(0);
$userDailyWin->setLastLogin($currentDate);
$em->persist($userDailyWin);
$em->flush();
}
}
}
谢谢。
推荐答案
该用户不是symfony服务,将不会自动连接。
尝试使用此界面:
SymfonyComponentSecurityCoreAuthenticationTokenStorageTokenStorageInterface
那么您需要:
$user=$tokenStorage->getToken()->getUser();
这篇关于Symfony 4:事件侦听器无法自动布线用户界面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:Symfony 4:事件侦听器无法自动布线用户界面


猜你喜欢
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01