如何在模板上的另一个函数中创建用于blaze模板的函数?

时间:2016-01-22 01:06:30

标签: javascript html templates meteor meteor-blaze

我使用meteor.js。

我安装了i18n和arillo:flow-router-helpers软件包。 我需要这样做:

$results->Info->First->One2;

表示javascript中的pathFor(i18n('dictonary.update'))。

如何在blaze模板上执行此操作?

1 个答案:

答案 0 :(得分:0)

您可以使用括号来组成火焰中的函数。

你可以这样做{{pathFor (i18n 'dictionary.update') }}

括号()使用参数i18n调用函数dictionary.update。它有点像lispthe best programming language ever

如果函数只是普通的JS。

,那么这将等同于pathFor( i18n('dictionary.update') );

我希望有所帮助。