如何使用变量而不是硬编码值访问把手模板中的数组元素? 我需要做类似的事情:
{{#each condition in conditions}}
{{App.ops.[condition.op].name}}
{{/each}}
此刻并没有给我一个解析错误,但在运行时并没有给我任何回报。 如果我做这样的事情:
{{App.ops.[1].name}}
它有效,但它不是我正在寻找的
答案 0 :(得分:12)
与my answer on another question
相关您可以使用the built-in lookup
helper:
lookup
助手允许使用Handlebars变量进行动态参数解析。这对于解析数组索引的值非常有用。
使用lookup
,您的示例可以写成
{{#each condition in conditions}}
{{#with (lookup ../App.ops condition.op)}}
{{name}}
{{/with}}
{{/each}}
(请注意,如果不了解您的数据结构,我会对App.ops
的位置做出假设。)
答案 1 :(得分:3)
您可以编写一个简单的帮助程序,只是为了从数组中获取值
Handlebars.registerHelper('getmyvalue', function(outer, inner) {
return outer[inner.label];
});
然后在
模板中使用它{{#each outer}}
{{#each ../inner}}
{{getmyvalue ../this this }}
{{/each}}
../this
引用当前外部项目,this
- 引用当前内部项目
进入模板的数据示例:
{
outer: {
1: { foo: "foo value" },
2: { bar: "bar value" }
},
inner: {
1: { label: "foo" },
2: { label: "bar" }
}
}
答案 2 :(得分:0)
您需要为您的问题创建帮助程序。以下是使用索引值解决问题的示例解决方案。如果你想使用某些条件,你也可以这样做。
Handlebars.registerHelper("each_with_index", function(array, options) {
if(array != undefined && array != null && array.length > 0){
var html = new StringBuffer();
for (var i = 0, j = array.length; i < j; i++) {
var item = array[i];
item.index = i+1;
// show the inside of the block
html.append(options.fn(item));
}
// return the finished buffer
return html.toString();
}
return "";
});
然后你可以做这样的事情
{{#each_with_index condition in conditions}}
{{App.ops.[condition.index].name}}
{{/each_with_index}}