📅  最后修改于: 2023-12-03 15:33:09.383000             🧑  作者: Mango
在Node.js中,http.IncomingMessage
类表示从客户端发出的HTTP请求。method
是其中的一个属性,表示请求使用的HTTP方法,即GET、POST、PUT、DELETE等。
request.method
无需参数。
request.method
返回一个字符串,表示请求使用的HTTP方法。
下面的代码段展示了如何使用method
属性获取HTTP请求的方法。
const http = require('http');
const server = http.createServer((req, res) => {
console.log(req.method); // 打印请求方法
res.end('Hello World\n');
});
server.listen(3000, () => {
console.log('Server running at http://localhost:3000/');
});
在上面的例子中,我们创建了一个HTTP服务器,当收到请求时,会打印请求方法(例如GET、POST等),然后返回"Hello World"的响应。