gpt4 book ai didi

javascript - 如何访问 Meteor 空格键中变量引用的数组元素?

转载 作者:行者123 更新时间:2023-12-02 16:07:37 26 4
gpt4 key购买 nike

spacebars中模板,我有一个 javascript 数组 x 和一个索引 i,例如。

Template.test.helpers({
'foo': function() {
return {
x: ['aa','bb','cc'],
i: 1
}
}
});

我可以使用 {{ x.[1] 访问模板中 x 的固定元素}}:

{{template name="test"}}
{{#with foo}}
{{x.[1]}}
{{/with}}
{{/template}}

但是 {{ x.[i] }} 不起作用。

如何访问x[i]?谢谢!

最佳答案

一种解决方案是定义一个自定义助手:

Template.test.helpers({
'getElement': function(a, i) {
return a[i];
}
});

然后在模板中使用:

{{ getElement x i }}

关于javascript - 如何访问 Meteor 空格键中变量引用的数组元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30564412/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com