0

我在 mongoDB 中有一个集合用户,每个用户都有一个小部件文档,如下所示:

Widgets = [{
type: 'container',
size: 12,
offset: 0,
id: 'root',
children: [
    {
        type: 'widgetSearch',
        title: 'Recherche',
        offset: 0,
        size: 2,
        id: 'searchId',
        toolbar: {
            buttons: [ 'config', 'move', 'minimize', 'maximize', 'close' ]
        }
    },...etc

在文件 client.js 中,我想访问 Widgets 数据。

我试试这个:

var user = Meteor.user();
var test = Meteor.users.find({_id: user._id});

console.log(test.widgets);

或者

console.log(test[0].widgets);

我在这里做错了什么?

4

1 回答 1

2

Meteor 默认不发布用户帐户的自定义字段。您需要自己发布每个所需的用户字段。

Meteor.publish(null, function() {
  return Meteor.users.find({_id: this.userId}, {fields: {widgets: 1, profile: 1, etc: 1 }});
});
于 2013-10-29T17:29:22.537 回答