Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我有两种类型的语言环境时,我会遇到这种情况。首先需要用于网站,其次需要用于创建报告。第二种类型的语言环境是动态添加的,因此无法在设置中设置。
我很感兴趣是否有可能在运行时添加新的语言环境?
根据这个答案和django 文档,
您可以在您的视图中执行此操作:
from django.utils import translation
和
language = second_type_locales translation.activate(language)
这是django 文档中的一些示例,