Express.js res.sendStatus()函数
res.sendStatus()函数用于将响应 HTTP 状态代码设置为 statusCode 并将其字符串表示形式作为响应正文发送。
句法:
res.sendStatus( statusCode )
参数: statusCode参数描述HTTP状态码。
返回:它返回一个对象。
express模块的安装:
- 您可以访问安装 express 模块的链接。您可以使用此命令安装此软件包。
npm install express
- 安装 express 模块后,您可以使用命令在命令提示符下检查您的 express 版本。
npm version express
- 之后,您可以创建一个文件夹并添加一个文件,例如 index.js。要运行此文件,您需要运行以下命令。
node index.js
示例 1:文件名:index.js
javascript
var express = require('express');
var app = express();
var PORT = 3000;
// Without middleware
app.get('/', function(req, res){
// Equivalent to res.status(200).send('OK')
res.sendStatus(200);
});
app.listen(PORT, function(err){
if (err) console.log(err);
console.log("Server listening on PORT", PORT);
});
javascript
var express = require('express');
var app = express();
var PORT = 3000;
// With middleware
app.use('/', function(req, res, next){
res.sendStatus(200);
next();
});
app.get('/', function(req, res){
res.send();
});
app.listen(PORT, function(err){
if (err) console.log(err);
console.log("Server listening on PORT", PORT);
});
运行程序的步骤:
- 项目结构将如下所示:
- 确保您已使用以下命令安装express模块:
npm install express
- 使用以下命令运行 index.js 文件:
node index.js
输出:
Server listening on PORT 3000
- 现在打开浏览器并转到http://localhost:3000/ ,现在检查您的浏览器屏幕,您将看到以下输出:
OK
示例 2:文件名:index.js
javascript
var express = require('express');
var app = express();
var PORT = 3000;
// With middleware
app.use('/', function(req, res, next){
res.sendStatus(200);
next();
});
app.get('/', function(req, res){
res.send();
});
app.listen(PORT, function(err){
if (err) console.log(err);
console.log("Server listening on PORT", PORT);
});
使用以下命令运行 index.js 文件:
node index.js
现在打开浏览器并转到http://localhost:3000/ ,现在检查您的控制台,您将看到以下输出:
Server listening on PORT 3000
您将在浏览器屏幕上看到以下输出:
OK
参考: https://expressjs.com/en/5x/api.html#res.sendStatus