我试图找出如何从节点请求中获取请求类型。我想根据类型执行不同的任务。
module.exports = function(req, resp, next){
if (req.type == 'GET'){
//Do something
}else{
// Do else something
}
}
答案 0 :(得分:9)
req.method
返回使用的请求HTTP方法。
答案 1 :(得分:0)
app.use('/', (req, res, next) => {
let requestMethod = req.method;
console.log(requestMethod);
res.send('ok');
});