迭代Meteor.js集合中的数组

时间:2013-07-03 09:11:32

标签: meteor

背景:使用Meteor.js编写Web应用程序,用户可以在其中添加棋盘游戏。有一个用户集合和一个游戏集合。

我有游戏列表,每个游戏旁边都有一个按钮,因此用户可以将游戏添加到他们的个人资料中。该按钮将找到每个游戏的_id并将其添加到user.games数组。 _id是一个很长的哈希值。

在用户的仪表板上,我希望能够显示用户已“订阅”的每个游戏,但我不确定如何访问user.games字段。

这是我的代码:

/server/publications.js

Meteor.publish('userGames', function () {
  return Meteor.users.find({_id: this.userId},
                           {fields: {'games': 1}});
});

/client/main.js

Meteor.subscribe('userGames');

/client/views/dashboard/dashboard.html

<template name="dashboard">
<div class="dashboard">
    {{#if hasGames}}
        <ul class="games-list">
            {{#each userGames}}
                {{> game}}
            {{/each}}
        </ul>
    {{else}}
        <h3>You have not added any games to your chest</h3>
    {{/if}}
</div>
</template>

/client/views/dashboard/dashboard.js

Template.dashboard.helpers({
    hasGames: function(){

    },
    userGames: function(){

    }
});

正如您所看到的,我不确定dashboard.js帮助函数是什么,以便能够访问user.games字段。

编辑:

所以我进行了一项测试,看看下面的答案是否有效 - 我已经更新了以下内容:

dashboard.html

<template name="dashboard">
    <div class="dashboard">
        {{test}}
    </div>
</template>

dashboard.js

Template.dashboard.helpers({
    test: function(){
        var user = Meteor.user();
        return Games.find({_id: { $in: user.games  }});
    }
});

控制台说“Uncaught TypeError:无法读取未定义的属性'游戏'”

1 个答案:

答案 0 :(得分:2)

查找当前登录用户的所有游戏

Games = new Meteor.Collection("userGames");

if (Meteor.isClient) {
  Meteor.subscribe('userGames');

  Template.hello.greeting = function () {
        var user = Meteor.user();

        if(user && Array.isArray(user.games)){
          return Games.find({_id: { $in: user.games }}).fetch();
        }else{
          return [];
        }

  };
}

if (Meteor.isServer) {

  Meteor.publish('userGames', function () {
    return Meteor.users.find({_id: this.userId},
                           {fields: {'games': 1}});
  });
}