recherche

Maison  >  Questions et réponses  >  le corps du texte

node.js - mongoose save方法无效

我使用 mongoose 将数据保存在node.js中。

下面是我的一些配置和使用代码

const songSchema = new Schema({
  tabId: {
    type: Number,
    index: true
  }, // 索引 ,在该网站中表示当前页面的id
  singer: String, // 歌手名称
  song: String, // 处理过的歌曲名称
  rawSong: String, // 未经处理的歌曲名称
  filename: String, // 文件名称
  filetype: String, // 文件类型
  hasCover: Boolean, // 是否有封面
})

// 远程连接数据库成功
const Song = db.model('song', songSchema)
const model = new Song({
    // 数据信息省略
})

model.save()

但是我在 集合 song 中并没有查出数据, 这是什么情况?

巴扎黑巴扎黑2785 Il y a quelques jours482

répondre à tous(2)je répondrai

  • 天蓬老师

    天蓬老师2017-04-17 15:18:32

    看看error呗

    model.save(function (error, doc) {
        if (error) {
            console.log(error);
        }
    });

    répondre
    0
  • PHPz

    PHPz2017-04-17 15:18:32

    doc.save(callback?:function)
    你不给回调的话返回的是个promise
    你需要doc.save().then(func).catch(func)

    répondre
    0
  • Annulerrépondre