我是节点 js 的新手。我正在关注链接。但这总是执行response.writeHead(404);
所以我无法查看 index.html
http://thecodinghumanist.com/blog/archives/2011/5/6/serving-static-files-from-node-js
这是我的网络服务器节点 js 代码。
var http = require('http');
var path = require('path');
var fs = require('fs');
http.createServer(function (request, response) {
console.log('request starting...');
var filePath = "."+request.url;
if (filePath == './')
filePath = '/index.html';
else
console.log(request.url);
var extname = path.extname(filePath);
var contentType = 'text/html';
switch (extname) {
case '.js':
contentType = 'text/javascript';
break;
case '.css':
contentType = 'text/css';
break;
}
fs.exists( filePath, function (exists) {
console.log(filePath);
if (exists) {
fs.readFile(filePath, function (error, content) {
if (error) {
console.log(error);
response.writeHead(500);
response.end();
}
else {
response.writeHead(200, { 'Content-Type': 'text/html' });
response.end(content, 'utf-8');
}
});
}
else {
response.writeHead(404);
response.end();
}
});
}).listen(8125);
我的问题。
- 这没有显示 index.html。
- 如何发送基于不同请求的响应或 html 文件?例如:
http://localhost:8125
-> index.htmlhttp://localhost:8125/firstpage.html
-> firstpage.html - 我们是否需要将 html 文件放在包含 server.js(Web 服务器)的同一目录中?
我也在 cloud9 ide 中尝试过同样的方法。
我在 SO 中发现了类似的问题。但我没有明确的想法如何解决它。 Node.js - 基本节点 Web 服务器未提供 Socket.io 客户端文件 提前致谢。