如何从现有收藏夹添加到新收藏夹

时间:2019-04-12 09:13:20

标签: javascript node.js mongoose mongoose-schema mongoose-populate

所以我要创建一个音乐播放器,并想从一个歌曲模式(已经创建)创建一个专辑模式。

在专辑模式中,有一个专辑标题和一组歌曲。现在,如果标题相同,我想将它们添加到专辑中。

我该如何实现?

我已经按专辑标题对歌曲集进行了排序,但是如果它们具有相同的专辑标题,则不知道如何将歌曲添加到歌曲数组。

//This is the song Schema.
var Song = mongoose.model('Songs', {
    album: String,
    title: String,
    artist: String,
    genre: String,
    year: Number,
    src: String
});

//This is the Album Schema.
const AlbumSchema = new Schema({
    album: String,
    songs: [{
        title: String,
        artist: String,
        genre: String,
        year: Number,
        src: String
    }]
});

还有没有一种将Songs模式嵌套在Album模式中的方法?

3 个答案:

答案 0 :(得分:0)

根据您的架构设计,我得出结论,您计划仅使用一种模型(“专辑”模型的“专辑”模型)。您已经为“歌曲”创建了一个架构。因此,与其重复“专辑”集合中的字段,不如将“歌曲”模式嵌套在“专辑”模式中。 您可以按照以下步骤进行操作。

const mongoose = require("mongoose");

var Song = mongoose.Schema('Songs', {
   album: String,
   title: String,
   artist: String,
   genre: String,
   year: Number,
  src: String
});

const AlbumSchema = new Schema({
   album: String,
   songs: [Song]
});

然后您可以创建自己的“相册模型”,

const Album = module.exports = mongoose.model("Album", AlbumSchema);

然后在任何要创建新歌曲的地方(可能是控制器!),都可以这样做

let newSong = {
    album: 'xxx',
    title: 'xxx',
    artist: 'xxx',
    genre: 'xxx',
    year: 'xxx',
    src: 'xxx'
}

Album.update(
    { _id: album._id },
    { $push: { songs: newSong } }
);

答案 1 :(得分:0)

//Blank Array which stores AlbumSchemaObject
let AlbumSchemaArray = [];
//sample Object
let albumObj = {album:"abc",songs:[{title:"abc",artist:"abc",genre:"abc",year:"abc",src:"abc"}]}
//Data from Database
let dataFromMongo = someAlbumObj
//search in already stored Array Object
//if album names exists then fetch that Object
var searchedAlbumObj = AlbumSchemaArray.find((singleObj) => {
                return singleObj.album  === dataFromMongo.album;
            });
//If object match then push songs in that objet
if(typeof(searchedAlbumObj.album) != "undefined")
{
    searchedAlbumObj['songs'].push(dataFromMongo.songs)
}
else //creates new object and stores
{
    AlbumSchemaArray.push(dataFromMongo)
}

我已经使用find方法检查是否分配了对象。如果没有,我们将创建一个新对象并将其推送到一个数组中 如果存在,我们将获取该对象并将歌曲推送到该对象。 希望这会有所帮助

答案 2 :(得分:0)

如果您已经有歌曲集,并且需要查找特定专辑的歌曲,则可以使用以下方法:

Song.find({album: 'foo'})
  .exec()
  .then(songs => {
    return Album.findOneAndUpdate({album: 'foo'}, {$push: {songs: songs}})
      .exec()
  })
  .then(album => console.log(album))
  .catch(err => err);

您的相册模式应如下所示:

const AlbumSchema = new mongoose.Schema({
  album: String,
  songs: [songSchema]
});
const Song = mongoose.model('Song', songSchema);

示例

songs : [ { _id: 5cb05ecd0facc60f8e383259, album: 'foo', title: 'song1' },
  { _id: 5cb05ecd0facc60f8e38325a, album: 'bar', title: 'song2' },
  { _id: 5cb05ecd0facc60f8e38325b, album: 'foo', title: 'song3' } ]

Song.find({album: 'foo'})
  .exec()
  .then(songs => {
    return Album.findOneAndUpdate({album: 'foo'}, {$push: {songs: songs}})
      .exec()
  })
  .then(album => console.log(album))
  .catch(err => err);

// Code above gives you :

{ _id: 5cb05f8ee567df1092be74a9,
  songs: 
   [ { _id: 5cb05ee5f1a14c0fc23f0c4d,
       album: 'foo',
       title: 'song1',
       __v: 0 },
     { _id: 5cb05ee5f1a14c0fc23f0c4f,
       album: 'foo',
       title: 'song3',
       __v: 0 } ],
  __v: 0,
  album: 'foo' }