httpServerResponse.statusCode是HTTP模块中ServerResponse类的内置应用程序编程接口,该模块用于此属性来控制在刷新标头时将发送给客户端的状态代码。
用法:
const response.statusCode
参数:此属性不接受任何参数作为参数。
返回值:此属性返回将发送到客户端的状态代码。
范例1:Filename-index.js
Javascript
// Node.js program to demonstrate the
// response.statusCode 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) {
// Getting the statusCode
// by using statusCode method
const value = response.statusCode;
// Display result by using end() method
response.end("statusCode:" + value, 'utf8', () => {
console.log("displaying the result...");
httpServer.close(() => {
console.log("server is closed")
})
});
});
// Listening to http Server
httpServer.listen(PORT, () => {
console.log("Server is running at port 3000...");
});
使用以下命令运行index.js文件:
node index.js
输出:
Server is running at port 3000... displaying the result... server is closed
现在打开浏览器并转到http://localhost:3000 /,您将看到以下输出:
statusCode:200
示例2:Filename-index.js
Javascript
// Node.js program to demonstrate the
// response.statusCode method
// Importing http module
var http = require('http');
// Request and response handler
const httpHandlers = (request, response) => {
// Getting the statusCode
// by using statusCode method
const value = response.statusCode;
// Display result by using end() method
response.end("statusCode:" + value, 'utf8', () => {
console.log("displaying the result...");
httpServer.close(() => {
console.log("server is closed")
})
});
};
// Creating http Server
var httpServer = http.createServer(
httpHandlers).listen(3000, () => {
console.log("Server is running at port 3000...");
});
使用以下命令运行index.js文件:
node index.js
输出:
Server is running at port 3000... displaying the result... server is closed
现在打开浏览器并转到http://localhost:3000 /,您将看到以下输出:
statusCode:200
参考: https://nodejs.org/dist/latest-v12.x/docs/api/http.html#http_response_statuscode
相关用法
- Node.js GM charcoal()用法及代码示例
- Node.js GM blur()用法及代码示例
- Node.js GM sharpen()用法及代码示例
- Node.js GM drawLine()用法及代码示例
- Node.js GM drawArc()用法及代码示例
- Node.js GM drawPolyline()用法及代码示例
- Node.js GM drawBezier()用法及代码示例
- Node.js GM drawCircle()用法及代码示例
- Node.js GM drawEllipse()用法及代码示例
- Node.js GM drawPolygon()用法及代码示例
- Node.js GM drawRectangle()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js http.ServerResponse.statusCode Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。