我本地也只是在浏览器里这样的地址才能访问页面: file:///D:/node/five/client/ws.html
http://localhost:8080/也只是出来一句话: Welcome to socket.io.
但是怎么访问页面呢?下面的访问方式都不能访问: http://localhost:8080/five/client/ws.html 或者http://localhost:8080/node/five/client/ws.html也不行
请问各位 怎么访问?
6 回复
var http = require(‘http’); var fs = require(‘fs’); var path = require(‘path’); var util = require(‘util’);
http.createServer(function (request, response) {
console.log('request starting...');
var filePath = '.' + request.url;
if (filePath == './')
filePath = './ws.html';
var extname = path.extname(filePath);
var contentType = 'text/html';
var ifbinary = false;
switch (extname) {
case '.js':
contentType = 'text/javascript';
break;
case '.css':
contentType = 'text/css';
break;
case '.gif':
contentType = 'image/gif';
ifbinary = true;
break;
case '.png':
contentType = 'image/png';
ifbinary = true;
break;
case '.jpg':
contentType = 'image/jpeg';
ifbinary = true;
break;
}
path.exists(filePath, function(exists) {
if (exists) {
if (ifbinary) {
fs.stat(filePath, function(error, stat) {
var rs;
response.writeHead(200,{ 'Content-Type': contentType, 'Content-Length' : stat.size });
rs = fs.createReadStream(filePath);
util.pump(rs, response, function(err) {
if(err) {
throw err;
}
});
});
}
else {
fs.readFile(filePath, function(error, content) {
if (error) {
response.writeHead(500);
response.end();
}
else {
response.writeHead(200, { 'Content-Type': contentType });
response.end(content, 'utf-8');
}
});
}
}
else {
response.writeHead(404);
response.end();
}
});
}).listen(8125);
console.log(‘Server running at http://127.0.0.1:8125/’);
我那现成的东西改了一下 用这个来运行客户端 然后就可以用localhost:8125来访问ws.html了
您好!按照您的解决方案大部分网页都可以访问了。 但是有参数的网页访问不了,报404错误。 例如:http://127.0.0.1:8125/abc.html?var=3 自我感觉这跟filePath变量的相关处理有关,但涉及多出不知道具体应该怎么修改。 新人,请指教!