我使用 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 中并没有查出数据, 这是什么情况?
天蓬老师2017-04-17 15:18:32
Look at error
model.save(function (error, doc) {
if (error) {
console.log(error);
}
});
PHPz2017-04-17 15:18:32
doc.save(callback?:function)
If you don’t give a callback, it will return a promise
You need doc.save().then(func).catch(func)