var http = require('http'),
q = require('querystring');
http.createServer(function (req, res) {
var options = {
host : '192.168.1.2',
port : 7379,
path : '/INCR/soscount',
method : 'get'
};
//服务端发出请求get
http.get(options,function(response){
res.writeHead(200, {'Content-Type': 'text/plain'});
var pageData = "";
response.setEncoding('utf8');
//接受数据,保存
response.on('data', function (chunk) {
pageData += chunk;
});
//数据接收完毕, 输出到客户端
response.on('end', function(){
res.write(pageData);
res.end();
});
});
}).listen(4000);
console.log("httpServer is listening at port 4000")
想用nodejs发起一个webredis的测试, 直接浏览器访问 http://192.168.1.2:7379/INCR/soscount 的时候 每次访问 数字会+1 但是如果通过nodejs 访问,每次访问数字会+2 这是为什么呢。。。
8 回复
@a272121742 1、请求/favicon.ico是用于显示网站的图标,如右图: 2、大多数浏览器都会发出这样的请求,算是“默认”的吧 3、只要你返回一个有效的的/favicon.ico文件,并且指定expire时间,相信浏览器不会每次都重新发出请求的。