我以 json 的身份返回猫鼬医生:
UserModel.find({}, function (err, users) {
return res.end(JSON.stringify(users));
}
但是,user. _ _ proto _ _ 也被返回了。没有它我怎么返回呢? 我试过这个,但是没有用:
UserModel.find({}, function (err, users) {
return res.end(users.toJSON()); // has no method 'toJSON'
}