Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

APIs

Daniel Rebolledo
Daniel Rebolledo
3,157 Points

I'm getting a 500 error, I don't know why...

I don't know why but I'm getting a 500 error, I'm doing my own version base on this course but I don't know what I'm doing wrong...

    app.put('/api/projects/:id', async (req, res) => {

      try {
        const project = await records.getProject(req.params.id);

        if (project) {
          project.name = req.body.name;
          project.email = req.body.email;
          project.company = req.body.company;
          project.project = req.body.project;
          project.topic = req.body.topic;
          project.budget = req.body.budget;
          project.description = req.body.description;

          await records.updateProject(project);
          res.status(204).end();

        } else {
          res.status(404).json({
            message: 'Project not found'
          });
        }

      } catch (err) {
        res.status(500).json({
          errorMsg: err.errorMsg
        });
      }

    });

1 Answer

Can you provide a link to the video/course?