如何将项插入到数组中的数组中,该数组也在数组中

时间:2017-12-07 06:58:38

标签: arrays mongodb meteor

我试图将一个项目插入一个多维数组中,但我不知道该怎么做。

    Meteor.users.update(
       { _id: Meteor.userId() }, { $push: {profile: { friends: "hey" } }}
    );

1 个答案:

答案 0 :(得分:0)

Meteor.users.update(
   { _id: Meteor.userId() }, { $push: {'profile.friends': 'hey'} }
 );