我一直在努力让Symfony使用用户的语言环境来处理请求,而不使用URL路径中的语言环境。
我已经跟踪了很多SO答案,this cookbook article让我走得很远。
我在登录事件中获取用户的语言首选项并将其设置为会话。然后,对于每个请求,我都有这个事件监听器:
<?php
namespace My\UserBundle\EventListener;
use Symfony\Component\HttpKernel\Event\GetResponseEvent;
use Symfony\Component\HttpKernel\KernelEvents;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
class LocaleListener implements EventSubscriberInterface
{
private $defaultLocale;
public function __construct($defaultLocale = 'fi')
{
$this->defaultLocale = $defaultLocale;
}
public function onKernelRequest(GetResponseEvent $event)
{
$request = $event->getRequest();
if (!$request->hasPreviousSession()) {
return;
}
// try to see if the locale has been set as a _locale routing parameter
#if ($locale = $request->attributes->get('_locale')) {
# $request->getSession()->set('_locale', $locale);
#} else {
// if no explicit locale has been set on this request, use one from the session
$request->setLocale($request->getSession()->get('_locale', $this->defaultLocale));
#}
echo $request->getLocale();
}
public static function getSubscribedEvents()
{
return array(
// must be registered before the default Locale listener
KernelEvents::REQUEST => array(array('onKernelRequest', 17)),
);
}
}
当我回复列表中的区域设置时,我会根据用户的偏好获得“sv”,这是正确的。但是当我在控制器中echo $this->getRequest()->getLocale();
时,它又是“fi”,这是我在配置和其他地方首选的语言。会话密钥_locale
在控制器中是“sv”。
我如何在控制器中使用请求并使用twig正确地基于会话?
答案 0 :(得分:0)
这里的解决方案有效:Set Locale in Symfony by GET param
因此,服务还需要注入翻译服务,然后应调用翻译者的->setLocale
来设置语言环境。