欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

Node.js GET/POST请求

程序员文章站 2022-04-14 16:51:43
...
Node.js GET/POST 请求

获取GET请求内容

案例:get.js
[code]var http = require('http');
var url = require('url');
var util = require('util');
http.createServer(function (req, res) {
    res.writeHead(200, { 'Content-Type' : 'text/plain'});
    res.end(util.inspect(url.parse(req.url, true)));
}).listen(8888);

终端:

Node.js GET/POST请求

客户端:http://localhost:8888/user?name=w3c&email=w3c@w3cschool.cc

Node.js GET/POST请求

获取POST请求内容

案例:post.js

[code]var http = require('http');
var querystring = require('querystring');
var util = require('util');
http.createServer(function (req, res) {
    // post 发送的数据
    var post = 'username=zhang&age=23';
    req.on('data', function (chunk) {
        post += chunk;
    });
    req.on('end', function () {
        post = querystring.parse(post);
        console.log(post);
        res.end(util.inspect(post));
    })
}).listen(8888);

以上就是Node.js GET/POST请求的内容,更多相关内容请关注PHP中文网(www.php.cn)!

相关标签: Node.js,GET,POST