当前位置:   article > 正文

node 阻止favicon.ico请求_express api favicon.ico

express api favicon.ico

自己写了一个简单的路由,但是发现总是出错,最后用node-inspector调试才发现,浏览器每次发送一个GET请求,默认都会多发送一个图标请求。先贴上代码:

var http = require('http');
http.createServer(function(req,res) {
  console.log('hello world' + req.url);
  //if(req.url === /favicon.ico) return;//阻止响应
  res.writeHead(200,{'Content-Type':'text/plain'});
  res.end('Hello world\n');
}).listen(1337,'127.0.0.1');
console.log('Sever running at http://127.0.0.1:1337/');
/* 控制台输出
$ node hello-world.js
Sever running at http://127.0.0.1:1337/
hello world. req.url = /
hello world. req.url = /favicon.ico
*/
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

删除注释就可阻止服务器对图标请求的相应。

页面相当于刷新了两次,这也是我自己写的路由出错的原因。第一次快速渲染出来hello world,肉眼无法察觉,之后图标请求就出现路由出错,渲染出error 404 not found.’,代码如下:

var http = require('http')
  , url =require('url');
  var handle = function (req,res) {
      res.writeHead(200);
      res.end('Hello world.');

    };
  var handle404 = function (req,res) {
      res.writeHead(200);
      res.end('error 404 not found.');
    };
var routes = [];//储存路由
var use = function (path, action) {//请求路径,处理方法添加到路由中
  routes.push([path,action]);
};

use('/user/setting', handle);

http.createServer(function(req,res) {
  var pathname = url.parse(req.url).pathname;
  if (pathname === '/favicon.ico') return;
  for (var i = 0; i <routes.length; i++) {
    var route = routes[i];
    if(pathname === route[0]) {
      var action = route[1];
      action(req,res);
      return;
    }
  }
  handle404(req,res);
}).listen(1337,'127.0.0.1');
console.log('Sever running at http://127.0.0.1:1337/');
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33

访问 http: //127.0.0.1:1337/user/setting之外的路径404错误

如何使用自己的图标?可参考:http://stackoverflow.com/questions/15463199/how-to-set-custom-favicon-in-node-js-express
中间件:https://github.com/expressjs/serve-favicon
维基百科Favicon介绍:https://en.wikipedia.org/wiki/Favicon

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/104460?site
推荐阅读
相关标签
  

闽ICP备14008679号