Не удается получить ошибку с узлом - PullRequest
0 голосов
/ 07 июня 2018

Я кодирую серверную часть своего сервера. Я не знаю, почему мой код выдает ошибку.Это мой код ниже.

//@routes Get api/profiles/handle/:handle
//@desc Get frofile by handle
//@access public

router.get('/handle/:handle', (req, res) => {
  const error = { };
  Profile.findOne({handle : req.param.handle})
  .populate('user', ['name', 'avatar'])
  .then(profile => {
    if(!profile){
      errors.noprofile= "There is no profile for this user";
      res.status(404).json(errors)
    }

    res.json(profile);
  })
  .catch(err => res.status(404).json(err))
}); 

Это URL, который я получаю с помощью почтальона.

http://localhost:5000/api/profiles/handle/sambulo

Я получаю ошибку ниже Я не знаю, что случилось.

<code><!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <title>Error</title>
    </head>
    <body>
        <pre>Cannot GET /api/profiles/handle/sambulo

1 Ответ

0 голосов
/ 07 июня 2018

У вас ошибка в маршрутизации.

Попробуйте этот код:

router.get('/api/profiles/handle/:handle', (req, res) => {
    // Your code here
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...