@edex中的meteor helper函数#each not working - index undefined

时间:2016-03-09 12:46:03

标签: meteor

我正在尝试使用帮助器在#each循环中增加一个值,但似乎循环中的@index变量没有被传递。

这是循环的样子:

{{#each thing.subthing}}
    {{offset @index}}
{{/each}}

这是帮助者:

Template.mytemplate.helpers({
    "offset": function(index){
        index += 5;
        console.log("index = "+index);
        return index;
    }
});

控制台正在记录“未定义”,即使我在修改之前检查了索引的值。

知道出了什么问题吗?我正在使用meteor 1.2.1,所以@index无法使用,这不是问题。

1 个答案:

答案 0 :(得分:0)

原来是版本问题。我的meteor安装位于1.2.1,但其中一个组件必须需要更新。我跑了流星 - 更新现在一切正常: - )