三.node.js中获取post请求的两种方式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了三.node.js中获取post请求的两种方式相关的知识,希望对你有一定的参考价值。

  • 方式一:通过绑定数据流data事件来获取
<!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>Document</title>
</head>
<body>
    <form action="login" method="post">
        username: <input type="text" name="username"><br>
        password: <input type="password" name="password"><br>
            <input type="submit" value="Sign in">
    </form>
</body>
</html>
const express = require("express");

const app = express();

app.listen(8080);


//引入querystring,将字符串转换成对象
const querystring = require("querystring");

//调转到登录页面
app.get("/login.html",(req,res)=>{
    console.log(__dirname+"/static/login.html");
    res.sendFile(__dirname+"/static/login.html");
})

//post请求,获取post请求中的数据
app.post("/login",(req,res)=>{
    req.on("data",myData=>{
        console.log(querystring.parse(myData.toString()));
    })
})
  • 方式二:使用中间件获取

以上是关于三.node.js中获取post请求的两种方式的主要内容,如果未能解决你的问题,请参考以下文章

post请求的两种方式

httpURLConnection-网络请求的两种方式-get请求和post请求

node.js中函数的两种封装方式

浏览器跨域问题分析

表单的提交有两种方式:GET和POST,这两种方式的区别是啥?

action中请求参数获取的两种方式