Как я могу построить модель мангуста из этого JSON - PullRequest
0 голосов
/ 29 января 2019

Я новичок, пытающийся преобразовать этот JSON в модель мангуста, чтобы я мог сохранить данные.

Это моя модель прямо сейчас


const commentSchema = new Schema([{

  sectionId: String,comments:
 [{

      id: String,
      authorAvatarUrl: String,
      authorName: String,
      authorId: String,
      authorUrl: String,
      comment: String,

replies:
 [{
        id: String,
        authorAvatarUrl: String,
        authorName: String,
        authorId: String,
        authorUrl: String,
        comment: String,
        parentId: String
      }]
  }]

}]);

const Comment = mongoose.model("Comment", commentSchema);
module.exports = Comment;

и это Jsonя пытаюсь отобразить

var existingComments = [{
    "sectionId": "1",
    "comments":
 [{
        "id": 88,
        "authorAvatarUrl": "support/images/jon_snow.png",
        "authorName": "Jon Sno",
        "authorId": 1,
        "authorUrl": "http://en.wikipedia.org/wiki/Kit_Harington",
        "comment": "I'm Ned Stark's bastard",
        "replies":
 [{
          "id": 100,
          "authorAvatarUrl": "support/images/jon_snow.png",
          "authorName": "Jon Sno",
          "authorId": 1,
          "authorUrl": "http://en.wikipedia.org/wiki/Kit_Harington",
          "comment": "P.S.: I know nothing.",
          "parentId": 88
        }]
    }]
}]

На стороне сервера я пытаюсь получить комментарий, подобный этому

//Comment posted
router.post("/comments", (req, res, next) => {
  //Save the comment on database
  const [{
    sectionId,

comments:
 [{
      id,
      authorAvatarUrl,
      authorName,
      authorId,
      authorUrl,
      comment,

      replies: 
[{
        id,
        authorAvatarUrl,
        authorName,
        authorId,
        authorUrl,
        comment,
        parentId
      }]
    }]
  }] = req.body;


  const newComment = new Comment([{
    sectionId,comments:
 [{ id, }]

 }]);

  newComment
    .save()
    .then(comment => {
      res.redirect("/index");

    })

    .catch(err => {
      console.log(err);
    });

});

Но не работает, любая помощь будет высоко ценится, потому чтоВ настоящее время я пытаюсь лучше понять самогон ODM.Спасибо !!!! * * 1012

1 Ответ

0 голосов
/ 29 января 2019

Ваша схема комментариев немного сбивает с толку.Вы создали схему «Комментарий» (обратите внимание, что это единственное число), но вы пытаетесь использовать схему комментариев как массив комментариев.

Совет. Сохраняйте свои схемы и единственное число.

Для достиженияжелаемый дизайн, сохраняя при этом ваши модели единичными, вы можете попробовать это:

Решение (1): Имейте одну коллекцию "Секций", в которой хранятся все данные Примечание: хотяу вас есть несколько схем, мы только моделируем SectionSchema, и это будет наша единственная коллекция, в которой каждый документ Section содержит всю необходимую информацию.

const sectionSchema = new Schema({
    name: {
        type: String,
        required: [true, 'Section name is required']
    },
    comments: {
        type: [commentSchema]
    }
});

const replySchema = new Schema({
    //id: String, //not needed, mongoose will automatically add an "_id" property when you save 
    authorAvatarUrl: String,
    authorName: String,
    authorId: String,
    authorUrl: String,
    comment: String,
    parentId: String
});

const commentSchema = new Schema({
    //id: String, //not needed, mongoose will automatically add an "_id" property when you save 
    authorAvatarUrl: String,
    authorName: String,
    authorId: String,
    authorUrl: String,
    comment: String,
    replies:{
        type: [replySchema]
    }
});

module.exports =  mongoose.model("Section", sectionSchema);

В приведенном выше решении у вас все еще могут быть маршруты для адресации.только конкретные комментарии, например:

router.get("/sections/:id") //gets the entire section document matching the ID
router.post("/sections/:id/comments/") //creates a new comment within section with matching ID. Simply push a new comment into the comments array
router.get("/sections/:id/comments/") //gets all the comments for this section. Simply return only the comments property of the section document.
router.get("/sections/:id/comments/:commentId") //gets a specific comment within a specific section. Filter the comments array to get the comment matching the commentId and then only return that.

etc..

Заключительное примечание: Существуют и другие способы моделирования данных.Это только один пример.Например, у вас может быть коллекция разделов и коллекция комментариев, где в документе комментариев хранится идентификатор раздела, указывающий раздел, к которому относится этот документ комментариев.

Посмотрите на https://mongoosejs.com/docs/subdocs.html и https://docs.mongodb.com/manual/core/data-modeling-introduction/ это может помочь вам понять, как вы можете моделировать свои данные, а также как работают поддокументы mongoose и как их использовать.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...