js文件
// 引入模块
const express=require('express')
// 创建服务器
const app=express()
// 设置端口
app.listen(3000,()=>{
console.log('启动成功');
})
// 使用插件 将post传参转对象
app.use(express.urlencoded({
extended:true
}))
// 创建路由
app.get('/reg',(req,res)=>{
res.sendFile(__dirname+'/03.html')
})
// 监听按钮提交的请求
app.post('/myreg',(req,res)=>{
console.log(req.body);
res.send('注册成功')
})
html文件
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<form action="myreg" method="post">
<input type="text" placeho