实现POST服务器

Posted Beat Yourself

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实现POST服务器相关的知识,希望对你有一定的参考价值。

//post请求的基本服务器
var http=require("http");
var jsonData="";
http.createServer((req,res)=>{
    console.log(req);
    req.on("data",(chunk)=>{
        jsonData+=chunk;
    });
    req.on("end",()=>{
        console.log("???");
        console.log(jsonData);
        var reqObj=JSON.parse(jsonData);
        console.log(reqObj);
        var resObj={
            message:"hello "+reqObj.name,
            question:"Are you "+reqObj.age+" age ?"
        };
        res.writeHead(200);
        res.end(JSON.stringify(resObj));
   });
    console.log("??");
}).listen(8080);
console.log("???");

var options={
    host:"127.0.0.1",
    path:"/",
    port:"8080",
    method:"POST"
};
var req=http.request(options,(response)=>{
    console.log("????");
    var responseData="";
    response.on("data",(chunk)=>{
        responseData+=chunk;
    });
    response.on("end",()=>{
        var dataObj=JSON.parse(responseData);
        console.log("Raw Response : "+responseData);
        console.log("Message : "+dataObj.message);
        console.log("Question : "+dataObj.question);
    });
    console.log("?????");
});
req.write(\'{"name":"Soul","age":21}\');
req.end();
console.log("????????");

   

代码初次执行结果(注意代码的执行顺序):

 

浏览器发出请求后的结果(注意代码执行的内容):

 ===> 

 

以上是关于实现POST服务器的主要内容,如果未能解决你的问题,请参考以下文章

推进学说代码片段

非常有用的 48 个 JavaScript 代码片段

测试片段post 2

树莓派 python 如何将本地文件上传到指定的服务器页面上

java实现HTTP协议:POST协议代码实现

从片段调用 Google Play 游戏服务