Node-express项目--个人简历:login(登录)接口编写记录

Posted 安之ccy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Node-express项目--个人简历:login(登录)接口编写记录相关的知识,希望对你有一定的参考价值。

功能描述:
1.用户输入邮箱和密码,判断用户是否存在
2.若存在,进一步判断密码是否正确
3.规范验证用户输入信息的格式

上篇文章中写了注册接口register的编写,在此基础上,继续写login接口的代码

基本搭建:
将用户输入的数据和数据库中的数据对比,看用户是否存在、密码是否正确:

//$route POST api/users/login
//@desc 
//@access public
router.post('/login', (req, res) => {
const email = req.body.email;
const password = req.body.password;

User.findOne({email})
    .then((user) => {
    	// 判断用户是否存在
        if (!user) {
            return res.status(400).json({ eamil: "用户不存在" })
        } else {
            // Load hash from your password DB.
            // 判断密码是否正确
            bcrypt.compare(password, user.password)
                .then((isMatch) => {
                    if (isMatch) {
                        res.status(200).json({ msg: "登录成功" })
                    } else {
                        return res.status(400).json({ password: "密码错误" })
                    }
                });
        }
    })
})

测试:
在这里插入图片描述
创建验证:在validation文件夹下新建login.js文件,用于验证登录

const Validator = require('validator');
const isEmpty = require("./empty");

module.exports = function validateLoginInput(data) {
    let errors = {};

    //如果输入空(没有输入),需要将其改为空字符串
    data.email = !isEmpty(data.email) ? data.email : '';
    data.password = !isEmpty(data.password) ? data.password : '';

    // 邮箱不合法
    if (!Validator.isEmail(data.email)) {
        errors.email = "邮箱不合法";
    }
    // 邮箱不能为空
    if (Validator.isEmpty(data.email)) {
        errors.email = "邮箱不能为空";
    }

    // 密码不能为空
    if (Validator.isEmpty(data.password)) {
        errors.password = "密码不能为空";
    }
    
    return {
        errors,
        isValid: isEmpty(errors)
    }
}

添加验证:在user.js文件中引入验证模块,

const validateLoginInput = require("../../validation/login");

在login路由接口使用刚刚创建的验证

const { errors, isValid } = validateLoginInput(req.body);
if (!isValid) {
    return res.status(404).json(errors)
}

测试:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

以上是关于Node-express项目--个人简历:login(登录)接口编写记录的主要内容,如果未能解决你的问题,请参考以下文章

Node-express项目--个人简历:添加token认证

Node-express项目--个人简历:register(注册)接口编写记录

Node-express项目--个人简历:login(登录)接口编写记录

Node-express项目--个人简历:多种方法获取用户数据接口编写

Node-express项目--个人简历:搭建当前用户的个人信息接口Profile

Node-express项目--个人简历:解决问题“experience字段没有手动输入却显示数据”