第一个问题,啊啊!
有没有人知道/有关于为什么mongoose将其调试日志写入stderr的信息?反正有没有把它写到stdout?
答案 0 :(得分:1)
debug选项接受函数而不是布尔值:
mongoose.set("debug", function (collection, method, paramA, paramB, paramC) {
console.log(collection)
console.log(method)
console.log(paramA)
console.log(paramB)
console.log(paramC)
})
我放paramA, paramB, paramC
的原因是因为参数取决于所使用的方法和选项:
Person.create({firstName: "john"}, callback)
// people
// insert
// {firstName: "john"}
// undefined
// undefined
Person.update({firstName: "john"}, {lastName: "doe"}, {new: true}, callback);
// people
// update
// {firstName: "john"}
// {$set: {lastName: "doe"}}
// {new: true}
Person.find({firstName: "john"}, callback);
// people
// find
// {firstName: "john"}
// undefined
// undefined
Person.find({firstName: "john"}, {limit: 1}, callback);
// people
// find
// {firstName: "john"}
// {limit: 1}
// undefined
记录的信息是 Mongodb 输入,而不是 Mongoose 输入。您可以在update()
方法中看到这一点,paramB
显示为{$set: {lastName: "doe"}}
。在幕后,Mongoose将更新转换为使用$set
,这就是记录的原因。
通过这种方式,您可以轻松地将其格式化为您想要的格式process.stdout.write()