router.post('/user', function (req, res) {
try {
MongoClient.connect("mongodb://test123:test123@localhost:27017/test", function (err, db) {
db.collection('user').findOne({ _id: req.body.UserId }, function (err, founddata) {
if (err) {
} else {
if (founddata) {
db.collection('project').find({ userId: founddata._id }, function (err, data) {
if (err) {
console.log(err);
} else {
console.log(data)
}
})
}
}
})
})
} catch (e) {
console.log(e)
}
})
我已经尝试了很多次,但是第二次查询的错误不是run.output是null值。