Node基础学习系列 当我们处理HTTP请求的时候,最先做的就是获取HTTP请求的URL,Method等等信息。 获取HTTP请求的Method。 获取HTTP请求的URL。 获取HTTP请求的header。 获取HTTP请求的request body Node使用Stream来处理HTTP的请求体,这个stream注册了data和end两个事件。
上一篇:Node基础学习(十):一个简单静态文件服务器const http = require('http'); const server = http.createServer(function (req,res) { let method = req.method; console.log(method); //GET }); server.listen(8080);
const http = require('http'); const server = http.createServer(function (req,res) { let method = req.method; console.log(method); }); server.listen(8080);
const http = require('http'); const server = http.createServer(function (req,res) { let headers = req.headers; console.log(headers); }); server.listen(8080);
const http = require('http'); const server = http.createServer(function (req, res) { let body = []; req.on('data', function (chunk) { console.log('触发了data事件'); body.push(chunk); }).on('end', function () { console.log('触发了end事件'); body = Buffer.concat(body).toString(); }); console.log(body); }); server.listen(8080);
本网页所有视频内容由 imoviebox边看边下-网页视频下载, iurlBox网页地址收藏管理器 下载并得到。
ImovieBox网页视频下载器 下载地址: ImovieBox网页视频下载器-最新版本下载
本文章由: imapbox邮箱云存储,邮箱网盘,ImageBox 图片批量下载器,网页图片批量下载专家,网页图片批量下载器,获取到文章图片,imoviebox网页视频批量下载器,下载视频内容,为您提供.
阅读和此文章类似的: 全球云计算