-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
User.findById() throws a CastError #21
Comments
Can you add an image of your POSTman? Chris Sevilleja | scotch.io http://scotch.io/ On Wed, Feb 18, 2015 at 6:34 PM, connecteddeveloper <
|
I got this to work using the find method and passing in the id instead:
|
@connecteddeveloper I got this to work by adding return to the if statement. .get(function(req, res) {
User.findById(req.params.user_id, function(err, user) {
if (err) return res.send(err);
// return that user
res.json(user);
});
}) |
Mine works fine, i can retrieve the user without issues, it could have been version issues with Mongo maybe |
The get route in the api (from chapter 10) throws an error when a user id is passed in the url in postman.
Here is the relevant code:
User.findById(req.params.user_id, function (err, user) {
if (err) res.send(err);
{
"message": "Cast to ObjectId failed for value "54e17f7d44a911a16653b4b" at path "_id"",
"name": "CastError",
"type": "ObjectId",
"value": "54e17f7d44a911a16653b4b",
"path": "_id"
}
I've tried casting the value from req.params.user_id to an id using mongoose.Types.ObjectId(), but still no luck. This problem happened with the code from the repo as well as my own code.
The text was updated successfully, but these errors were encountered: