在我的Flask应用程序中,在main.py文件中,我定义了:
from flaskext.babel import gettext
....
def somefun():
return render_template('some.html', messages=messages)
在模板文件some.html中,我用过:
<input type='text' name='keywords' value='{{ keywords|default('') }}' placeholder='{{ gettext('Search...') }}' />
这会出错:
<input type='text' name='keywords' value='{{ keywords|default('') }}' placeholder='{{ gettext('Search...') }}' />
UndefinedError: 'gettext' is undefined
如何导入此功能以供模板使用?
答案 0 :(得分:19)
不幸的是,根本没有记录,但Flask-Babel透明地使用Jinja2's i18n extension。这意味着默认情况下,可以使用以下表达式函数:gettext
,ngettext
和_
。
还可以使用模板标签:
{% trans %}foo{% endtrans%}
{% trans num %}
There is {{ num }} object.
{% pluralize %}
There are {{ num }} objects.
{% endtrans %}
正在等待补丁的bug report about missing docs;)