Node.js response.writeHead()方法
原文:https://www . geesforgeks . org/node-js-response-write head-method/
response . write head()(在 v1 中添加..0)属性是“http”模块的内置属性,该模块向请求发送响应头。状态码是一个 3 位的 HTTP 状态码,像 404。最后一个参数 header 是响应头。可选地,可以给出人类可读的状态消息作为第二个参数。
当已经用response . setheader()设置了头时,它们将与传递给 response.writeHead() 的任何头合并,优先传递给 response.writeHead() 的头。如果调用了这个方法,而 response.setHeader() 还没有被调用,那么它会直接把提供的头值写到网络通道上,而不在内部缓存,头上的response . getheader()不会产生预期的结果。如果期望标题的渐进填充,并可能在将来进行检索和修改,请改用 response.setHeader() 。
为了得到响应和恰当的结果,我们需要导入“ http ”模块。
进口:T0】
语法:
response.writeHead(statusCode[, statusMessage][, headers]);
参数:它接受上面提到的和下面描述的三个参数:
- Status code < Number > : It accepts the status code of the number type.
- Status message < String > : It accepts any string that displays status messages.
- Header file < Object > : It accepts any function, array or string.
返回值 < http。服务器响应 > : 它返回对服务器响应的引用,以便调用可以被链接。
下面的例子说明了 Node.js 中 response.writeHead() 属性的使用
示例 1: 文件名:index.js
// Node.js program to demonstrate the
// response.writeHead() Method
// Importing http module
var http = require('http');
// Setting up PORT
const PORT = process.env.PORT || 3000;
// Creating http Server
var httpServer = http.createServer(
function(request, response){
const body = 'hello world';
// Calling response.writeHead method
response.writeHead(200, {
'Content-Length': Buffer.byteLength(body),
'Content-Type': 'text/plain'
});
response.end(body);
});
// Listening to http Server
httpServer.listen(PORT, () => {
console.log("Server is running at port 3000...");
});
输出:
输出:控制台内
服务器正在端口 3000 运行…
现在在浏览器中运行 http://localhost:3000/ 。
输出:浏览器内
你好世界
示例 2: 文件名:
// Node.js program to demonstrate the
// response.writeHead() Method
// Importing http module
var http = require('http');
// Setting up PORT
const PORT = process.env.PORT || 3000;
// Creating http Server
var httpServer = http.createServer(
function(request, response){
// Setting up Headers
response.setHeader('Content-Type', 'text/html');
response.setHeader('Set-Cookie', ['type=ninja',
'language=javascript']);
response.setHeader('X-Foo', 'bar');
// Calling response.writeHead method
response.writeHead(200,
{ 'Content-Type': 'text/plain' });
// Getting the set Headers
const headers = response.getHeaders();
// Printing those headers
console.log(headers);
// Prints Output on the
// browser in response
response.end('ok');
});
// Listening to http Server
httpServer.listen(PORT, () => {
console.log(
"Server is running at port 3000...");
});
使用以下命令运行 index.js 文件:
node index.js
输出:
输出: In-Console
服务器正在端口 3000 运行……
【对象:空原型】{
【内容类型】:【文本/纯文本】,
【设置-cookie】:[【类型=忍者】,【语言=javascript】,
【x-foo】:【bar】}
现在在浏览器中运行http://localhost:3000/。
输出:浏览器内
ok
内容-长度以字节而不是字符给出。使用 Buffer.byteLength() 确定正文的长度(以字节为单位)。Node.js 不检查 Content-Length 和已经传输的正文长度是否相等。试图设置包含无效字符的标题字段名称或值将导致引发类型错误。
参考:T2【https://nodejs . org/API/http . html # http _ response _ writehead _ statuscode _ statusmessage _ headers
版权属于:月萌API www.moonapi.com,转载请注明出处