Giter Club home page Giter Club logo

Comments (5)

chris-sev avatar chris-sev commented on July 21, 2024

Can you add an image of your POSTman?

Chris Sevilleja | scotch.io http://scotch.io/
@scotch_io http://twitter.com/scotch_io
@sevilayha http://twitter.com/sevilayha

On Wed, Feb 18, 2015 at 6:34 PM, connecteddeveloper <
[email protected]> wrote:

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);

    res.json(user);
});

{
"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.


Reply to this email directly or view it on GitHub
#21.

from mean-machine-code.

connecteddeveloper avatar connecteddeveloper commented on July 21, 2024

screenshot 2015-02-18 18 50 08

from mean-machine-code.

connecteddeveloper avatar connecteddeveloper commented on July 21, 2024

I got this to work using the find method and passing in the id instead:

var id = req.params.user_id;
    User.find({_id: id}, function(err, user) {

        if (err) return res.send(err);

        // return that user
        res.json(user);
    });

from mean-machine-code.

 avatar commented on July 21, 2024

@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);
    });
  })

from mean-machine-code.

josephkandi avatar josephkandi commented on July 21, 2024

Mine works fine, i can retrieve the user without issues, it could have been version issues with Mongo maybe

from mean-machine-code.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.