当前位置: 移动技术网 > IT编程>开发语言>JavaScript > [Day7] Node.js利用Express实现用户注册登陆功能(2)

[Day7] Node.js利用Express实现用户注册登陆功能(2)

2020年10月25日  | 移动技术网IT编程  | 我要评论
[Day7] Node.js利用Express实现用户注册登陆功能(2)文章目录[Day7] Node.js利用Express实现用户注册登陆功能(2)要求环境准备实战前端login.htmlregister.html后端server.jsRouter数据库接口db.jsmysql module运行index.js结果及演示要求了解Express框架了解node.js常用模块:express,body-parser,mysql了解express Router了解HTML f

[Day7] Node.js利用Express实现用户注册登陆功能(2)

要求

  • 了解Express框架
  • 了解node.js常用模块:express,body-parser,mysql
  • 了解express Router
  • 了解HTML form表单
  • 了解MySQL Server 及安装使用
  • 了解SQLyog使用

环境

  1. OS: Win10
  2. Node.js: v12.19.0
  3. Express: v4.17.1
  4. Yarn: v1.22.10
  5. 使用VScode IDE
  6. body-parser:1.19.0
  7. mysql: 2.18.1
  8. MySQL Server:5.7
  9. SQLyog:V12.9

准备

首先在Win10上安装Mysql,一路Next就行。安装完成使用SQLyog连接MySQL Server。连接成功需要创建数据库和数据表

Schema:

CREATE TABLE user (
username char(20) NOT NULL,
password char(20) NOT NULL,
email char(30) DEFAULT NULL,
address char(20) DEFAULT NULL,
phonenumber char(20) DEFAULT NULL,
logintime int(20) DEFAULT NULL,
id int(20) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (id),
KEY username (username)
) ENGINE=InnoDB DEFAULT CHARSET=utf8

实战

前端

3个page, login.html, register.html.

<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8">
			<title>登陆注册</title>
			<link rel="stylesheet" type="text/css" href="/stylesheets/style.css" />
		</head>
		<body>
			<a href="./register.html">注册</a>
			<a href="./login.html">登录</a>
		</body>
	</head>
</html>

login.html

<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8">
			<title>登陆注册</title>
			<link rel="stylesheet" type="text/css" href="/stylesheets/style.css" />
		</head>
		<body>
			<form action="/login" method="GET" >        
				<label for="">账号:</label> 
				<input name="user" type="text" placeholder="请输入账号"> 
				<br> 
				<label for="">密码:</label> 
				<input type="password" name="password" placeholder="请输入密码"> 
				<br>
				<input type="submit"  value="登录">
			</form>
		</body>
	</head>
</html>

register.html

<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8">
			<title>登陆注册</title>
			<link rel="stylesheet" type="text/css" href="/stylesheets/style.css" />
		</head>
		<body>
			<form action="/register" method="POST">
				<label for="">账号:</label> 
				<input name="user" type="text" placeholder="请输入账号">
				<br> 
				<label for="">密码:</label> 
				<input name="psw" type="password" placeholder="请输入密码"> 
				<br> 
				<label for="">重复密码:</label> 
				<input name="pswa" type="password" placeholder="请重复密码"> 
				<br> 
				<input type="submit" value="注册">
			</form>
		</body>
	</head>
</html>

后端

server.js

var express = require("express");
var bodyParser = require("body-parser");
var router = require("./routers");

var app = express();

app.use(bodyParser.urlencoded({ extended: true }));
app.use(express.static('public'));
app.use('/', router);

module.exports = app;

Router

router/index.js, 调用封装好的数据库接口:queryUer, addUser

const express=require("express");
const dao = require("../dao/db");

const router=express.Router();

router.get("/login", function(req,res){
    console.dir(req.query);
    try{
        dao.queryUser({username:req.query.user},function(err,record){
            if(err){
                console.log(err);
                throw error;
            }
            console.log(record);
            if(record  && record.password == req.query.password){
                res.send(`${req.query.user}:登陆成功`);
            }else{
                res.send(`${req.query.user}:登陆失败,检查登陆信息是否正确`);
            }
        });
    } catch(error){
        console.log(error);
        res.send(`${req.body.user}: 登陆失败`);
    }    
})

router.post("/register", function(req,res){
    console.dir(req.body); 
    try{
        if(req.body.psw == req.body.pswa){
            dao.addUser({username:req.body.user,password:req.body.psw});
            res.send(`${req.body.user}: 注册成功`);
        } else {
            console.log(error);
            res.send(`${req.body.user}: 注册失败:,检查登陆信息是否正确`);
        }        
    } catch(error){
        console.log(error);
        res.send(`${req.body.user}: 注册失败`);
    }
    
})
module.exports = router;

数据库接口db.js

dao/db.js

var mysqlClient= require("./mysql");

function addUser (userInfo,callabck){
    console.log("addUser:"+ userInfo);
    var sql= `insert into user(username,password) values('${userInfo.username}','${userInfo.password}')`;
    console.log("sql:"+ sql);
    mysqlClient(sql,function(err,rows){
        if(err){
            console.log("err:"+err);
            callabck(err,null);
        } else{
            console.log("addUser result:");
            console.log(rows);
            callabck(null,rows);
        }
    })
}

function queryUser (userInfo,callabck){
    console.log("queryUser:"+ userInfo);
    var sql= `select * from user where username='${userInfo.username}'`;
    console.log("sql:"+ sql);
    mysqlClient(sql, function(err,rows){
        if(err){
            console.log("err:"+err);
            callabck(err,null);
        } else{            
            rows && rows.length>0 ?  callabck(null,rows[0]): callabck(null,null);
        }
    })
}
exports.addUser = addUser;
exports.queryUser = queryUser;

dao/mysql.js

const mysql = require("mysql");
const pool = mysql.createPool({
    host:"localhost",
    user:"root",
    password:"*****",
    database:"test"
});

function query(sql,callback){
    pool.getConnection(function(err,connection){
        if(err){
           callback(err,null);
           return
        }
        connection.query(sql, function (err,rows) {            
            callback(err,rows);
            connection.release();
        });
    });
}

module.exports = query;

mysql module

yarn add mysql

运行index.js

cd src/ && node index.js

结果及演示

浏览器看效果及整个过程。
在这里插入图片描述

本文地址:https://blog.csdn.net/zhs362625119/article/details/109275086

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

相关文章:

验证码:
移动技术网