本文介绍了emblem.js 中带有变量的连接字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要在 Emblem.js 中将带有变量值的连接字符串常量传输到 i18n 助手,我该怎么做?

I need in Emblem.js to transmit to i18n helper concatenated string constant with variable value, How can i do it?

each item in model.items
    div
        t "dict.{{item}}"

返回错误

Missing translation for key "dict.{{item}}"

推荐答案

如果您使用的是 Handlebars 1.3+,则可以使用 子表达式.首先,编写一个字符串连接助手:

If you're using Handlebars 1.3+, you can use a subexpression. First, write a string concatenation helper:

Ember.Handlebars.helper('concat', function (a, b) {
    return a + b;
});

然后像这样使用它(抱歉,我不知道 Emblem 所以我将使用正常的 stache 语法):

Then use it like this (sorry, I don't know Emblem so I'm going to use the normal stache syntax):

{{t (concat 'dict.' item)}}

这篇关于emblem.js 中带有变量的连接字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 12:17