Why does Symfony ignore the browsers locale-setting (HTTP-Request Accept-Language Header)?

落花浮王杯 提交于 2020-01-01 07:53:46

问题


i am currently trying to enable the translator in Symfony 2.0. Symfony is ignoring the Accept-Language Header variable and is using default_locale (and when that is not defined the fallback).

My request looks like:

Accept-Language de-DE,de;q=0.8,en-us;q=0.5,en;q=0.3

but $this->getRequest()->getLocale(); gets me en with that same request.

Can somebody tell me what may be wrong?

Yes, I have tried to clear the cache and deleting my cookies (omnomnom) :)


回答1:


This is the expected behaviour. Symfony does not by default use the Accept Language header and instead relies on the symfony configuration for locale settings. In fact, it is advised not to use the same URL for content in different locales, see this document:

Symfony 2 The Book - Translations - The Locale and the URL

But if you want to ignore this advice and use the Accept language header, you can do it with this code in your controller:

$request = $this->getRequest();
$session = $this->get('session');

$session->setLocale($request->getPreferredLanguage(array('de', 'en')));


来源:https://stackoverflow.com/questions/12140162/why-does-symfony-ignore-the-browsers-locale-setting-http-request-accept-languag

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!