流星:如何在其他模板标签中嵌入模板标签

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

本文关键字:标签 其他 流星      更新时间:2023-09-26

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

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

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

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

现在,如何将此 i18n-ed 文本放入以前的模板标签中?我想要类似的东西

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

但显然这是错误的语法。

知道吗?

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

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