我有一个标准的 node.js 静态文件服务器,我想用它来提供同一目录中的普通 html、js、css 和 jpg 文件(即典型的 HTML5 单页应用程序)。我希望节点服务器可以正确处理这个问题。我看到的不一样。
该index.html
文件被提供,但随后的请求被丢弃(即它们永远不会到达服务器)。在我的 chrome 开发工具中,我看到如下内容:
GET http://projectcoho.cloudfoundry.com/css/coho.css http://projectcoho.cloudfoundry.com/:7
GET http://projectcoho.cloudfoundry.com/sencha-touch/sencha-touch-debug.js http://projectcoho.cloudfoundry.com/:8
GET http://projectcoho.cloudfoundry.com/coho-debug.js http://projectcoho.cloudfoundry.com/:8
但是,这些资源存在于服务器上,如果您直接输入它们的 URL,您就可以访问它们。对于这些请求,我在 app.js 中的回调永远不会被调用(我可以这么说,因为console.log
这些文件永远不会被调用。
这是 app.js 文件:
var path = ".";
var port = process.env.VCAP_APP_PORT || 3000;;
var file = new(static.Server) (path, {
cache: 600
});
mime.define({
'text/css': ['css'],
'text/javascript': ['js'],
'image/jpeg': ['jpg', 'jpeg']
});
http.createServer(function (request, response) {
var uri = url.parse(request.url).pathname;
var filename = libpath.join(path, uri);
console.log("URI: " + request.url + " , filename: " + filename);
libpath.exists(filename, function (exists) {
console.log("Serving " + filename);
if (!exists) {
console.log("Not found");
response.writeHead(404, {
"Content-Type": "text/plain"
});
response.write("404 Not Found\n");
response.end();
return;
}
if (fs.statSync(filename).isDirectory()) {
filename += '/index.html';
}
var type = mime.lookup(filename);
file.serveFile(filename, 200, {'content-type' : type}, request, response);
});
}).listen(port);
我在这里想念什么?
我正在使用节点 v0.6.15