Meteor:如何在其他模板标签中嵌入模板标签?

Meteor: How can I embed template tags within other template tags?

例如,我的 Meteor 模板中有一个输入字段:

{{> afQuickField name="mobile" options="auto" label="Your mobile number"}}

然后我开始建立一个国际化的网站,这意味着我需要 i18n 标签文本。使用 anti:i18n,您可以拥有这样的国际化文本:

{{i18n "signup.form.mobile"}}

现在,如何将这个国际化的文本放入之前的模板标签中?我想要类似

的东西
{{> afQuickField name="mobile" options="auto" label=(i18n 'signup.form.mobile')}}

但显然这是错误的语法。

有什么想法吗?

也许 almogdesign 方法可以帮助您进一步...

https://github.com/aldeed/meteor-autoform/issues/483