如何使用未定义的变量Node js解决此问题?

时间:2018-12-12 09:45:21

标签: node.js express momentjs

我们正在尝试将这3个生日,出生月份和出生年份变量转换为年龄。我们从前端获取这3个值,并希望将其转换为node js后端的age并存储在用户数据库中。我们使用moment js将其转换为年龄。

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(),
        age:age 
    });

    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([birthyear, birthmonth - 1, birthday]), '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' });
        });
    });
  },

当我在命令提示符下的前端提交注册按钮时出现错误,它表明未定义出生年并显示在以下行:

const age = moment().diff(moment([birthyear, birthmonth - 1, birthday]),

我将其放置在身体上方并插入age:age在体内

我确信其他2个值也会发生相同的错误。怎么了?我们该如何解决?

1 个答案:

答案 0 :(得分:1)

您从未在提供的代码中的任何位置定义变量birthyearbirthmonthbirthmonth,所以该错误是有道理的。

我不熟悉您使用的Joi对象验证库,但是看到value.password包含上述bcrypt调用中的密码,我认为您可以将这些字段作为{ {1}}。试试这个:

value

由于您使用的属性名称与架构定义中使用的属性名称不同,因此在 const age = moment().diff(moment([value.birthyear, value.birthmonth - 1, value.birthday]), 'years'); 代码块中可能会遇到类似的错误,因此请仔细检查所有const body = {...}行以解决这些问题。