第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

獲取插入文檔的IDnodejs和mangodb

獲取插入文檔的IDnodejs和mangodb

千巷貓影 2023-07-29 16:25:53
我嘗試插入from nodejsto mangodb,我能夠?qū)⑽臋n插入數(shù)據(jù)庫,但我不知道如何獲取ID,我可以在插入成功時(shí)獲取ID嗎?這是insert.jsconst Video = require("../models/Video");Video.findOne({ title }, (err, user) => {    if (err) {      res        .status(500)        .json({ message: { msgBody: "Error hac occured", msgError: true } });    }    if (user) {      res.status(400).json({        message: { msgBody: "Title is already taken", msgError: true },      });    } else {      const newvideo = new Video({ title, singer, country, genre });      newvideo.save((err) => {        if (err) {          res.status(500).json({            message: { msgBody: "Error has occured", msgError: true },          });        } else {          res.status(201).json({            message: { msgBody: "Add success", msgError: false },           });        }      });    }  });這是Video.jsconst mongoose = require("mongoose");const VideoSchema = new mongoose.Schema({  title: {    type: String,    required: true,  },  singer: {    type: String,  },  country: {    type: String,    required: true,  },  genre: {    type: String,    required: true,  },});module.exports = mongoose.model("video", VideoSchema);希望你們明白我在問什么:D
查看完整描述

1 回答

?
Cats萌萌

TA貢獻(xiàn)1805條經(jīng)驗(yàn) 獲得超9個(gè)贊

save 方法還在回調(diào)中提供響應(yīng)。請檢查以下代碼:


newvideo.save((err, video) => {

        if (err) {

          res.status(500).json({

            message: { msgBody: "Error has occured", msgError: true },

          });

        } else {

          //get the id of inserted video

          let videoId = video._id;


          res.status(201).json({

            message: { msgBody: "Add success", msgError: false }, 

          });

        }

      });


查看完整回答
反對 回復(fù) 2023-07-29
  • 1 回答
  • 0 關(guān)注
  • 133 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號