如何使用Mongoose将常规JSON对象转换为Mongo文档?

时间:2015-03-08 15:23:59

标签: javascript json mongodb mongoose document

我有一个名为parsedSong的JSON对象,我希望使用Mongoose将其转换为Mongo文档。

var newSong = new Song(parsedSong);

但是,这只为我提供了一个只有id属性的新文档。如何进行不会从parsedSong剪切数据的转换?

1 个答案:

答案 0 :(得分:1)

我假设您已在架构中定义了这些变量。然后你可以做这样的事情:

var bestSong = {
    artist: "Seether",
    song: "Careless Whisper"
};

var song = new Song(bestSong);

song.save(function(err) {
    if(err) throw err;
    console.log('saved');
});

现在这首歌应该在数据库中。