摘要:发送响应头信息参数用于指定一个三位的状态码参数值为一个字符串,用于指定对该状态码的描述信息为一个对象,用于指定服务器端创建的响应头对象用于指定内容类型用于将客户端重定向到另一个地址用于指定一个被下载的文件名用于指定服务器端响应内容的编
1. 发送HTTP响应头信息
response.writeHead(statusCode, [reasonPhrase], [headers])
statusCode:参数用于指定一个三位的HTTP状态码
reasonPhrase:参数值为一个字符串,用于指定对该状态码的描述信息
headers:为一个对象,用于指定服务器端创建的响应头对象
content-type:用于指定内容类型
location:用于将客户端重定向到另一个url地址
content-disposition:用于指定一个被下载的文件名
content-length:用于指定服务器端响应内容的编码格式
set-cookie:用于在客户端创建一个cookie
content-encoding:用于指定服务器端响应内容的编码方式
Cache-Control:用于开启缓存机制
Expires:用于指定缓存过期时间
Etag:用于指定当服务器端响应内容没有变化时不重新下载数据
多带带设置响应头信息
可以使用http.ServerResponse对象的setHeader方法多带带设置响应头信息。
* `response.setHeader(name, value)` * `res.setHeader("Content-Type", "text/type");`
获取响应头某个字段的值
response.getHeader(name);
res.getHeader("Content-Type");
删除一个响应字段
response.removeHeader(name);
res.removeHeader("Content-Type");
检测响应头是否已经发送
response.headersSent();
已发出,为true
未发送,为false
Date字段
默认情况下HTTP服务器会自动将服务器端当前时间作为响应头中的Date字段值发送给客户端,可以通过将res.sendDate属性值设置为false的方法,在响应头中删除Date字段
res.sendDate = false;
简单的HTTP服务器
const http = require("http"); let server = http.createServer(function (req, res) { if (req.url !== "/favicon.ico") { res.write(""); res.sendDate = false; // 不发送时间 if (res.headersSent) { console.log("第一个响应头已经发送"); } else { console.log("第一个响应头未发送"); } res.writeHead(200, {"Content-Type": "text/html"}); if (res.headersSent) { console.log("第二个响应头已经发送"); } else { console.log("第二个响应头未发送"); } res.write("hello, this is http server response content"); } res.end(); }).listen(2596, "localhost", function () { console.log("the http server is running at localhost:3333") });
响应数据的尾部追加一个头信息
res.addTrailers(headers)
const http = require("http"); let server = http.createServer(function (req, res) { if (req.url !== "/favicon.ico") { res.writeHead(200, {"Content-Type": "text/plain", "Trailer": "Content-MD5"}); res.addTrailers({"Content-MD5": "5Q8W9XS5AS98ZX2X5V8V3ZX3ZA8"}); res.write("hello, these are some new massage"); } res.end(); }).listen(3333, "localhost", function () { console.log("the http server is running at localhost:3333") });2. 创建HTTP服务器
const http = require("http"); const fs = require("fs"); const PORT = 2596; let server = http.createServer((req, res) => { if (req.url !== "/favicon.ico") { let out = fs.createWriteStream("./requestCurl.log"); out.write("客户端请求的方法为:" + req.method + " "); out.write("客户端请求的url字符串为:" + req.url + " "); out.write("客户端请求头对象为:" + JSON.stringify(req.headers) + " "); out.write("客户端请求所用的HTTP版本为:" + req.httpVersion + " "); req.on("data", function (data) { console.log("服务器端接收到数据:" + data); }); req.on("end", () => { console.log("客户端请求数据已全部接收完毕"); }) } res.end(); }).listen(PORT, "localhost"); server.on("listening", () => { console.log(`server start listen localhost:${PORT}`); }); server.on("connection", (socket) => { console.log("client and server had been connected"); }); setTimeout(10 * 1000, (socket) => { console.log("server response timeout"); }); server.on("error", (err) => { if (e.code === "EADDRINUSE") { console.log("the port has been used,please change your server port"); } server.on("close", () => { console.log("server closed"); }); }); /*** * 客户端请求的方法为:GET * 客户端请求的url字符串为:/ * 客户端请求头对象为:{"user-agent":"curl/7.29.0","host":"localhost:2596","accept":"*|*"} * 客户端请求所用的HTTP版本为:1.1 * */3. 创建HTTP客户端
当客户端请求获取到服务器响应流时,触发res.on("data", (chunk) => {})事件
const http = require("http"); let options = { hostname: "www.qq.com", port: 80, path: "/", method: "GET" }; let req = http.request(options, (res) => { console.log(`状态码:${res.statusCode}`); console.log(`响应头:${JSON.stringify(res.headers)}`); res.setEncoding("utf8"); res.on("data", (chunk) => { console.log(`响应内容:`); }) }); req.on("response", (res) => { console.log(res); // IncomingMessage }); req.on("error", (err) => { if (err.code === "ECONNRESET") { console.log("socket端口超时"); } else { console.log("在请求数据过程中发生错误,错误代码为:" + err.code) } }); req.end(); /** * 状态码:200 * 响应头:{ * "server": "squid/3.5.24", * "date": "Sun, 25 Feb 2018 14:09:11 GMT", * "content-type": "text/html; charset=GB2312", * "transfer-encoding": "chunked", * "connection": "close", * "vary": "Accept-Encoding, Accept-Encoding, Accept-Encoding, Accept-Encoding", * "expires": "Sun, 25 Feb 2018 14:10:11 GMT", * "cache-control": "max-age=60", * "x-cache": "HIT from shenzhen.qq.com" * } * * **/
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/92888.html
摘要:中各种用于读取数据的对象对象描述用于读取文件代表客户端请求或服务器端响应代表一个端口对象用于创建子进程的标准输出流。如果子进程和父进程共享输入输出流,则子进程的标准输出流被废弃用于创建子进程的标准错误输出流。 9. stream流 fs模块中集中文件读写方法的区别 用途 使用异步方式 使用同步方式 将文件完整读入缓存区 readFile readFileSync 将文件部...
摘要:将非标准路径字符串转换为标准路径字符串解析路径字符串中的和字符串,返回解析后的标准路径将多个斜杠字符串转换为一个斜杠字符串,例如将转换为将操作系统中的反斜杠字符串转换为正斜杠字符串如果路径字符串以斜杠字符串结尾则在转换后的完整路径字符串末尾 Path 1. normalize()将非标准路径字符串转换为标准路径字符串 解析路径字符串中的..和.字符串,返回解析后的标准路径 将多个斜杠...
摘要:域套接字使用或指定请求方法的字符串。请求路径包含非法字符时抛出异常。保持资源池周围的套接字在未来被用于其它请求。默认值为当使用的时候,通过正在保持活动的套接字发送包的频繁程度。 文章来源:小青年原创发布时间:2016-09-29关键词:JavaScript,nodejs,http,url ,Query String,爬虫转载需标注本文原始地址: http://zhaomenghuan....
摘要:基本介绍这是一个基本的环境搭建不同的操作系统可以选择不同的安装方式如果不需要太多的安装步骤就直接在官网下载最新版安装包进行安装即可环境配置必须安装的软件更改源与更新系统首先备份下载的源配置文件运行生成缓存更新系统安装使用安装命 基本介绍 这是一个基本的Node.js环境搭建,不同的操作系统可以选择不同的安装方式 如果不需要太多的安装步骤,就直接在Node.js官网下载最新版安装包进行...
阅读 1082·2021-09-22 15:19
阅读 1696·2021-08-23 09:46
阅读 2226·2021-08-09 13:47
阅读 1404·2019-08-30 15:55
阅读 1407·2019-08-30 15:55
阅读 1973·2019-08-30 15:54
阅读 2794·2019-08-30 15:53
阅读 712·2019-08-30 11:03