gpt4 book ai didi

Meteor blaze 通过数组索引选择一个特定的项目

转载 作者:行者123 更新时间:2023-12-04 21:40:56 28 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How can I get the index of an array in a Meteor template each loop?

(6 个回答)


6年前关闭。




有没有办法访问 meteor 火焰中每个块助手内的数组索引?

我正在寻找这样的东西。

{{#each myarray}}
{{this.arrayIndex3}}
{{/each}}

最佳答案

恐怕还没有标准的方法来做到这一点,但是您可以编写一个帮助程序,将您的数组映射到一个索引/值对列表,并对其进行迭代以显示您想要的内容。

JS

Template.myTemplate.helpers({
myArrayWithIndex: function(){
return _.map(this.myArray,function(value,index){
return {
index:index,
value:value
};
});
}
});

HTML
<template name="myTemplate">
{{#each myArrayWithIndex}}
myArray[{{index}}] == {{value}}
{{/each}}
</template>

您还可以定义自己的块助手,名为 {{#eachWithIndex}}这将使这个过程自动化。

关于Meteor blaze 通过数组索引选择一个特定的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26389414/

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