Webstorm - 为什么Webstorm在控制台中显示两次HTTP请求

时间:2014-12-30 08:36:10

标签: node.js express webstorm

enter image description here

Webstorm是否应该在我的控制台中显示所有HTTP请求两次,或者我的node.js Express应用程序出现了什么问题?

如果我从命令行运行它,它还会记录HTTP请求两次

enter image description here

1 个答案:

答案 0 :(得分:1)

由于favicon请求,所有请求都加倍。您可以使用以下拦截器禁用该favicon请求;

app.use(function(req, res, next){
    if(req.url != "/favicon.ico"){
        next();
    }
});

只有所有请求都会被拦截,如果任何请求网址与/favicon.ico匹配,则会被跳过