0

背景:使用 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 字段。

编辑:

因此,我进行了测试以查看以下答案是否有效-我已更新以下内容:

仪表板.html

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

仪表板.js

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

控制台显示“未捕获的类型错误:无法读取未定义的属性‘游戏’”

4

1 回答 1

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}});
  });
}
于 2013-07-03T10:33:25.637 回答