本文介绍了将猫鼬文档转换为 json的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我以这种方式将 mongoose 文档作为 json 返回:
I returned mongoose docs as json in this way:
UserModel.find({}, function (err, users) {
return res.end(JSON.stringify(users));
}
然而,user.__proto__ 也被返回了.没有它我怎么能回来?我试过了,但没有用:
However, user.__proto__ was also returned. How can I return without it? I tried this but not worked:
UserModel.find({}, function (err, users) {
return res.end(users.toJSON()); // has no method 'toJSON'
}
推荐答案
你也可以试试 mongoosejs 的 lean() :
You may also try mongoosejs's lean() :
UserModel.find().lean().exec(function (err, users) {
return res.end(JSON.stringify(users));
}
这篇关于将猫鼬文档转换为 json的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!