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.
我正在考虑切换到 Pyramid,但我想知道如何本地化表单。我怎样才能有一个可以接受/验证特定语言环境格式的数字的表单?(千位和小数点分隔符等)
Django 目前通过使用localize=True字段来为我做这件事。
localize=True
Pyramid 项目以其出色的文档而闻名,并且有一个国际化和本地化部分可用。
然而,Pyramid 并没有规定您在应用程序中使用的表单框架。本地化服务本身通常被推迟到Babel,包括数字和日期格式化例程。你必须要么将它们绑定到你选择的表单框架中,要么找到一个已经绑定到 Babel 的框架来完成这项工作(我不知道,但这并没有说太多)。