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