标签: arrays mongodb meteor
我试图将一个项目插入一个多维数组中,但我不知道该怎么做。
Meteor.users.update( { _id: Meteor.userId() }, { $push: {profile: { friends: "hey" } }} );
答案 0 :(得分:0)
Meteor.users.update( { _id: Meteor.userId() }, { $push: {'profile.friends': 'hey'} } );