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 文章,我遇到了这个
ValidationError(_('Invalid value'), code='invalid')
我的问题是做什么_('Invalid value')?
_('Invalid value')
这是为了翻译目的
你应该在脚本的开头看到这个
from django.utils.translation import ugettext as _
你可以在文档中看到完整的解释
_通常与国际化有关
_
可能是Mercurial/Python 的重复 - 下划线函数做什么?