简体   繁体   中英

Meteor - move data from one collection to another

I'm trying to move Mongo document from one collection to another and I can't get it to work (in server method):

var oldData = newCollection.findOne({name: name});
if(oldData){
  console.log(oldData); // this works
  oldCollection.insert({oldData}); // this doesn't
}

Another way:

var oldData = newCollection.findOne({name: name});
if(oldData){
  console.log(oldData.score); // this works
  oldCollection.insert({
    score: oldData.score
  }); // this doesn't

What's wrong here?

您不需要在选项1中使用大括号oldCollection.insert(oldData)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM