我需要的node.js的帮助下设置内容类型得到一个文件的文件类型。 我知道我可以很容易地检查文件的扩展名,但我也得到了一个没有扩展名的文件应有的内容类型image/png
, text/html
麻生太郎。
这是我的代码(我知道这并没有太大的意义,但是这就是我需要的基础):
var http = require("http"),
fs = require("fs");
http.createServer(function(req, res) {
var data = "";
try {
/*
* Do not use this code!
* It's not async and it has a security issue.
* The code style is also bad.
*/
data = fs.readFileSync("/home/path/to/folder" + req.url);
var type = "???"; // how to get the file type??
res.writeHead(200, {"Content-Type": type});
} catch(e) {
data = "404 Not Found";
res.writeHead(404, {"Content-Type": "text/plain"});
}
res.write(data);
res.end();
}).listen(7000);
我还没有找到一个函数的API ,所以我会很高兴,如果谁能告诉我该怎么做。