有人知道如何在Symfony2.1中设置语言环境吗?
我正在尝试:
$this->get('session')->set('_locale', 'en_US');
和
$this->get('request')->setLocale('en_US');
但这些都没有任何效果,devbar告诉我:
会话属性:没有会话属性
无论如何,它总是使用的回退语言环境,如config.yml
中所定义(PS:我正在尝试按照here
所述设置翻译系统答案 0 :(得分:5)
尽管Symfony 2.1声明您可以通过Request或Session对象简单地设置语言环境,但我从未设法让它工作,设置语言环境根本没有效果。
所以我最终使用了一个侦听器和twig路由来处理语言环境/语言:
听众:
namespace FK\MyWebsiteBundle\Listener;
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 = 'en')
{
$this->defaultLocale = $defaultLocale;
}
public function onKernelRequest(GetResponseEvent $event)
{
$request = $event->getRequest();
if (!$request->hasPreviousSession()) {
return;
}
if ($locale = $request->attributes->get('_locale')) {
$request->getSession()->set('_locale', $locale);
} else {
$request->setLocale($request->getSession()->get('_locale', $this->defaultLocale));
}
}
static public function getSubscribedEvents()
{
return array(
// must be registered before the default Locale listener
KernelEvents::REQUEST => array(array('onKernelRequest', 17)),
);
}
}
在service.xml中注册监听器:
<service id="fk.my.listener" class="FK\MyWebsiteBundle\Listener\LocaleListener">
<argument>%locale%</argument>
<tag name="kernel.event_subscriber"/>
</service>
路由必须如下:
homepage:
pattern: /{_locale}
defaults: { _controller: FKMyWebsiteBundle:Default:index, _locale: en }
requirements:
_locale: en|fr|zh
使用以下方法处理路由:
{% for locale in ['en', 'fr', 'zh'] %}
<a href="{{ path(app.request.get('_route'), app.request.get('_route_params')|merge({'_locale' : locale})) }}">
{% endfor %}
这样,当您单击链接以更改语言时,将自动设置区域设置。
答案 1 :(得分:2)
您可以在parameters.yml中设置区域设置。
[parameters]
...
locale = en
config.yml的回退引用%locale%,它是上述parameters.yml文件中的设置。
如果您正在尝试即时设置它,那么这应该有效:
$this->get('session')->setLocale('en_US');
在以下情况下直接打印出来进行测试:
print_r($this->get('session')->getLocale());
在2.1中,语言环境现在存储在请求中,但仍可在会话中设置。 http://symfony.com/doc/2.1/book/translation.html#handling-the-user-s-locale
$this->get('session')->set('_locale', 'en_US');
// setting via request with get and setLocale
$request = $this->getRequest();
$locale = $request->getLocale();
$request->setLocale('en_US');
答案 2 :(得分:1)
不是:
$this->get('request')->setLocale('en_US');
但是:
$this->get('request')->getSession()->set('_locale', 'en_US');
答案 3 :(得分:0)
来自symfony食谱:
“区域设置存储在请求中,这意味着它在用户请求期间不是”粘性“。在本文中,您将学习如何使用户的区域设置”粘性“,以便在设置后,每个后续请求都将使用相同的语言环境。“
http://symfony.com/doc/current/cookbook/session/locale_sticky_session.html
当您设置区域设置并使用symfony探查器(在开发模式下)查看子请求时,您会注意到这一点。