流星 - 将数据从一个集合移动到另一个集合

Meteor - move data from one collection to another

本文关键字:集合 一个 移动 另一个 数据 流星      更新时间:2023-09-26

我正在尝试将Mongo文档从一个集合移动到另一个集合,但我无法让它工作(在服务器方法中):

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

另一种方式:

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

这是怎么回事?

您不应该需要选项 1 中的大括号 - oldCollection.insert(oldData)