Как перевести эти 3 значения вместе в возраст? - PullRequest
0 голосов
/ 11 декабря 2018

У нас есть 3 значения в отдельности: день рождения, месяц и год рождения, поскольку во входных данных каждый вход является отдельным.В серверной части, где я использую узел js, мы хотим получить возраст из этих трех деталей.мы нашли такое использование момента js здесь: moment().diff(moment('20170507', 'YYYYMMDD'), 'years') Но мой код немного отличается для использования такого результата.

module.exports = {
  async CreateUser(req, res) {
    const schema = Joi.object().keys({
      username: Joi.string()
        .required(),
      email: Joi.string()
        .email()
        .required(),
      password: Joi.string()
        .required(),
        birthday: Joi.number().integer()
        .required().min(2).max(2),
        birthmonth: Joi.number().integer()
        .required().min(2).max(2),
        birthyear: Joi.number().integer()
        .required() 
    });

    const { error, value } = Joi.validate(req.body, schema);
    if (error && error.details) {
      return res.status(HttpStatus.BAD_REQUEST).json({ msg: error.details })
    }

    const userEmail = await User.findOne({
      email: Helpers.lowerCase(req.body.email)
    });
    if (userEmail) {
      return res
        .status(HttpStatus.CONFLICT)
        .json({ message: 'Email already exist' });
    }

    const userName = await User.findOne({
      username: Helpers.firstUpper(req.body.username)
    });
    if (userName) {
      return res
        .status(HttpStatus.CONFLICT)
        .json({ message: 'Username already exist' });
    }

    return bcrypt.hash(value.password, 10, (err, hash) => {
      if (err) {
        return res
          .status(HttpStatus.BAD_REQUEST)
          .json({ message: 'Error hashing password' });
      }
     const age = moment().diff(moment([year, month - 1, day]), 'years');
      const body = {
        username: Helpers.firstUpper(value.username),
        email: Helpers.lowerCase(value.email),
        birthday: (value.bday),
         birthmonth: (value.month),
       birthyear: (value.month),
        password: hash,
       age:age
      };
      User.create(body)
        .then(user => {
          const token = jwt.sign({ data: user }, dbConfig.secret, {
            expiresIn: '5h'
          });
          res.cookie('auth', token);
          res
            .status(HttpStatus.CREATED)
            .json({ message: 'User created successfully', user, token });
        })
        .catch(err => {
          res
            .status(HttpStatus.INTERNAL_SERVER_ERROR)
            .json({ message: 'Error occured' });
        });
    });
  },

Как мы можем использовать момент для вышеуказанного уникального случая для преобразования этих 3значения в возрасте?

1 Ответ

0 голосов
/ 11 декабря 2018

Попробуйте

const age = moment().diff(moment([year, month - 1, day]), 'years');
...