Я не могу обновить пароль пользователя с ha sh в mongoose - PullRequest
0 голосов
/ 25 января 2020
Bcrypt.hash(request.body.password, 10, (error, hash) => {
    console.log(hash)
    studentSchema
      .findOneAndUpdate(
        { userName: request.body.username },
        {
          $set: {
            password:hash
          }
        }
      )
      .then(data => {
        response.send(data);
      })
      .catch(error => {
        alert(error)
      });
  })
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...