使用node.js,express,twitter bootstrap和i18next尝试使用我在文件“index.jade”中替换的
span.glyphicon.glyphicon-flash
| Submit
带
span.glyphicon.glyphicon-flash
| = t('app.submit')
app.submit
来自符合i18next标准的JSON文件。一般情况下,i18next替换工作正常,如果在如下的简单行中使用app.submit
:
label= t('app.submit')
我也尝试了不同的方式,例如|= t('..
或| =t('...
。
有人知道我应该在哪里搜索这个问题,甚至有解决方案吗?
提前致谢! 赖
答案 0 :(得分:0)
我在学习!很简单,|
继续下一行。你可以留下这个。意味着工作:
span.glyphicon.glyphicon-flash= t('app.submit')
答案 1 :(得分:0)
另一种可能性:
span.glyphicon.glyphicon-flash
| #{t('app.submit')}