我需要知道它返回的语言,以便我可以自己动手。
答案 0 :(得分:6)
from django.utils import translation
def myview(...):
...
lang = translation.get_language()
...
这将返回当前线程中使用的语言代码,因此在您的情况下,由中间件设置。
答案 1 :(得分:1)
模板默认为{{LANGUAGE_CODE}}。 http://docs.djangoproject.com/en/dev/topics/i18n/internationalization/#other-tags