I am calling this code from the front-end and confirmed that there is a proper db connection and that the Id value is properly passed, and that there is a corresponding value in the database, but for some reason, res is null. What am I missing?
JavaScript
x
12
12
1
app.get("/api/walletlogin/user/:userId", (req, res) => {
2
3
id = req.params.userId
4
var query = {_id: id}
5
db.collection("Users").findOne(query, (err, result) => {
6
if (result) {
7
console.log(result.userName)
8
} else {
9
console.log('No User')
10
}
11
})
12
Here is the front-end call:
JavaScript
1
12
12
1
axios.get('/api/walletlogin/user/' + accounts)
2
.then((response) => {
3
console.log('Logged in With ' + accounts)
4
router.push('/account')
5
})
6
.catch((errors) => {
7
console.log('Cannot log in')
8
})
9
}).catch((err) => {
10
console.log(err, 'err!!')
11
})
12
Advertisement
Answer
You could try to convert your id to an objectID.
JavaScript
1
3
1
var ObjectId = require('mongodb').ObjectId;
2
var id = ObjectId(req.params.userId);
3