node.js(expree.js )模拟手机验证码功能及登录功能

dbconfig.js

javascript 复制代码
const mysql = require('mysql')
module.exports = {
    // 数据库配置
    config: {
        host: 'localhost', // 连接地址
        port: '3306', //端口号
        user: 'root',  //用户名
        password: 'wei630229', //密码
        database: 'exapp2', //数据库名
    },
// 连接数据库,使用mysql的连接池连接方式
// 连接池对象
sqlConnect: function (sql, sqlArr, callBack) {
        var pool = mysql.createPool(this.config)
        pool.getConnection((err, conn) => {
            console.log('12345')
            if (err) {
                console.log('连接失败');
                return;
            }
            // 事件驱动回调
            conn.query(sql, sqlArr, callBack);
            //释放连接
            conn.release();
        })
    }
}
javascript 复制代码
var dbCongif = require("../utils/dbconfig");

// 随机验证码
function rand(min, max) {
  return Math.floor(Math.random() * (max - min)) + min;
}

// 声明验证码和手机号数组
ValidatePhoneCode = [];
// 判断该手机是否一定接收过该验证码
let sendCodeP = (phone) => {
  for (var item of ValidatePhoneCode) {
    console.log("item", item);
    if (phone == item.phone) {
      return true;
    }
  }
  return false;
};

//
let findCodeAndPhone = (phone, code) => {
  for (var item of ValidatePhoneCode) {
    if (phone == item.phone && code == item.code) {
      return "login";
    }
  }
  return "error";
};

// 验证码发送接口
sendCode = (req, res) => {
  // 判断该手机号是否一定接收过验证码
  let phone = req.query.phone;
  if (sendCodeP(phone)) {
    res.send({
      code: 400,
      msg: "已经发送过验证码,稍后再发",
    });
  }

  let codeMge = rand(1000, 9999);
  ValidatePhoneCode.push({
    phone: phone,
    code: codeMge,
  });
  res.send({
    code: 200,
    msg: "发送成功",
  });
  console.log("code", codeMge);
};

// 验证码登录
codePhoneLogin = (req, res) => {
  let { phone, code } = req.query;

  
  // 判断手机号是否发送过验证码
  if (sendCodeP(phone)) {
    // 验证码和手机号是否匹配
    let state = findCodeAndPhone(phone, code);
    if (state == "login") {
      // 登录成功
      res.send({
        code: "200",
        mgs: "登录成功",
      });
    } else if (state == "error") {
      res.send({
        code: "500",
        mgs: "登录失败",
      });
    }
  } else {
    res.send({
      code: "400",
      mgs: "未发送验证码",
    });
  }
};

module.exports = {
  sendCode, // 验证码接口
  codePhoneLogin, //  登录接口
};

测试验证码发送

测试登录

相关推荐
雪域迷影4 分钟前
C++ 11 中的move赋值运算符
开发语言·c++·move
jf加菲猫12 分钟前
第2章 Hello World
开发语言·c++·qt·ui
不爱吃糖的程序媛16 分钟前
Electron 智能文件分析器开发实战适配鸿蒙
前端·javascript·electron
flashlight_hi42 分钟前
LeetCode 分类刷题:3217. 从链表中移除在数组中存在的节点
javascript·数据结构·leetcode·链表
Java追光着1 小时前
React Native 自建 JS Bundle OTA 更新系统:从零到一的完整实现与踩坑记录
javascript·react native·react.js
努力往上爬de蜗牛1 小时前
react native 运行问题和调试 --持续更新
javascript·react native·react.js
todoitbo1 小时前
Rust新手第一课:Mac环境搭建踩坑记录
开发语言·macos·rust
laplace01231 小时前
PyQt5 + Qt Designer配置指令
开发语言·qt
nvd112 小时前
Python 迭代器 (Iterator) vs. 生成器 (Generator)
开发语言·python