带图片的登录

熟练使用multerparty/fs/url 模块

----------------------------------提交页面formdata--------------------------------
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>formData</title>
    <style>
        #box{
            width: 500px;
            height: 500px;
            background-color: red;
        }
        #a{
            width: 200px;
            height: 200px;
            background-color: blue;
        }
    </style>
</head>
<body>
    <form action="http://localhost:8080/reg" method="post" enctype="multipart/form-data" id="form1">
        <p>
            用户名:<input type="text" name="username">
        </p>
        <p>
            密码:<input type="text" name="upass">
        </p>
        <p>
            头像:<input type="file" name="f1">
        </p>
        <input type="submit">
    </form>
    <script>
        let form1=document.getElementById("form1")
        form1.onsubmit=function(e){
            let data=new FormData(form1)   //将表单的值放入data中
            let xhr=new XMLHttpRequest()
            xhr.open(form1.method,form1.action,true)
            xhr.send(data)
            xhr.onreadystatechange=function(){
                if(xhr.readyState==4&&xhr.status==200){
                    console.log(xhr.responseText)
                    let result=JSON.parse(xhr.responseText)
                    console.log(result)
                }
            }
            return false //终止默认事件  不让表单提交
        }
------------------------------------显示页面-------------------------------
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>展示所有的用户</title>
    <script src="https://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script>

</head>
<body>
    <ul>
        <li>
            <img src="" alt=""> <span>名称</span>
        </li>
    </ul>
    <script>
        $(function(){
            $.ajax({
                type:"get",
                url:"http://localhost:8080/getusers",
                dataType:"JSON",
                success(res){
                    console.log(res)
                    res.message.forEach(item=>{
                        let li=$("<li />")
                        let img=$("<img />").attr("src",item.imgUrl)
                        li.append(img)
                        let span=$("<span />").html(item.username)
                        li.append(span)
                        $("ul").append(li)
                    })
                    
                }
            })
        })
    </script>
const http = require("http")
const multiparty = require("multiparty")
const fs = require("fs")
const url=require("url")
let users = [{ id: 1, username: "wangyi", upass: 123, imgUrl: "头像地址" }]
http.createServer((req, res) => {
    if (req.method == 'POST') {
        if (req.url == "/reg") {
            let form = new multiparty.Form({
                uploadDir:"./upload"
            })    //上传后图片保存路径
            form.parse(req, (err, data, files) => {    //解析form
                //data{ username: [ '15233564788' ], upass: [ '123' ] }
                //console.log(files) 图片数据
                let result=users.some(item=>item.username==data.username[0])
                if (result) {
                    res.write(JSON.stringify({ message: "用户已经存在" }))
                    res.end()
                } else {
                    let user = {
                        id: users.length + 1,
                        username: data.username[0],
                        upass: data.upass[0],
                        imgUrl:files.f1[0].path //特别注意这个位置在查询图片地址时需要查询下地址路径
                    }     //添加新增加用户的对象值
                    users.push(user)  //将新用户加入users中
                    res.write(JSON.stringify({ message: "注册成功" }))
                    res.end()
                }
            })
        }
    } else if (req.method == "GET") {
        let { pathname, query } = url.parse(req.url, true)
        if (pathname.endsWith(".html")) {
            fs.readFile(`./www${pathname}`, (err, data) => {   //读取静态文件
                if (err) {
                    res.write("404")
                    res.end()
                } else {
                    res.write(data)
                    res.end()
                }
            })
        } else if (pathname == "/getusers") {
            res.write(JSON.stringify({ message: users }))
            res.end()
        }
       
    }
}).listen(8080)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值