我使用meteor.js。
我安装了i18n和arillo:flow-router-helpers软件包。 我需要这样做:
$results->Info->First->One2;
表示javascript中的pathFor(i18n('dictonary.update'))。
如何在blaze模板上执行此操作?
答案 0 :(得分:0)
您可以使用括号来组成火焰中的函数。
你可以这样做{{pathFor (i18n 'dictionary.update') }}
括号()
使用参数i18n
调用函数dictionary.update
。它有点像lisp,the best programming language ever。
pathFor( i18n('dictionary.update') );
我希望有所帮助。