所有文件都使用myme text / html发送,忽略服务器node.js上的头函数writeHead

时间:2014-07-04 08:23:26

标签: javascript node.js http http-headers

我提出了一个关于我的代码nodejs服务器的问题,当发送一个标题但是在控制台中我apareca正确,浏览器忽略它并将所有内容作为text / html,在这里我添加它们我的路由器的代码是什么

var path = require("path");
var fs = require('fs');
var root = "www";

    function enrutar(manejador,ruta,respuesta){
        console.log("Voy a rutear algo para "+ruta);

        var extencion = path.extname(ruta);
        console.log("la extencion es: ",extencion);

        if(typeof manejador[ruta] === 'function'){
            manejador[ruta](respuesta);
        }
        else
        {
            switch (extencion)
            {
                // get the html
                case '.html':
                fs.readFile(root + ruta, function (err, data) {
                    if (err) return send404(respuesta);
                    respuesta.writeHead(200, { 'content-Type': 'text/html' });
                    respuesta.write(data);
                    respuesta.end();
                });
                break;

                // get the script that /public/chatclient.html references
                case '.js':
                fs.readFile(root + ruta, function (err, data) {
                    if (err) return send404(respuesta);
                    respuesta.writeHead(200, { 'content-Type': 'text/javascript' });
                    respuesta.write(data);
                    respuesta.end();
                });
                break;
                // get the styles that /public/chatclient.html references
                case '.css':
                fs.readFile(root + ruta, function (err, data) {
                    if (err) return send404(respuesta);
                    respuesta.writeHead(200, { "Content-type" : "text/css"});
                    respuesta.end(data);
                    console.log("Sirvo css: ",respuesta);
                });
                break;

                case '.json':
                fs.readFile(root + ruta, function (err, data) {
                    if (err) return send404(respuesta);
                    respuesta.writeHead(200, { 'content-Type': 'application/json' });
                    respuesta.write(data);
                    respuesta.end();
                });
                break;

                case '.jpg':
                fs.readFile(root + ruta, function (err, data) {
                    if (err) return send404(respuesta);
                    respuesta.writeHead(200, {'content-Type': 'image/jpeg'});
                    respuesta.write(data);
                    respuesta.end();
                });
                break;

                case '.mp3':
                fs.readFile(root + ruta, function (err, data) {
                    if (err) return send404(respuesta);
                    respuesta.writeHead(200, {'content-Type': 'text/html'});
                    respuesta.write(data);
                    respuesta.end();
                });
                break;

                case '.png':
                fs.readFile(root + ruta, function (err, data) {
                    if (err) return send404(respuesta);
                    respuesta.writeHead(200, {'content-Type': 'image/png'});
                    respuesta.write(data);
                    respuesta.end();
                });
                break;

                default: send404(res);
            }
        }

        var registro = fs.createWriteStream('registro.txt',{'flags':'a'});
        registro.write(ruta + '\n');
    }

    function send404(res){
        res.writeHead(404, {'Content-Type': 'text/html'});
        res.write("404 Objeto no encontrado :c", 'utf8');
        res.end();
    }

    exports.enrutar = enrutar;

这是我的服务器代码:

var servidor = require('http');
var url = require('url');


function iniciar(enrutar, manejador){
    function arrancaServidor(peticion,respuesta){

        var ruta = url.parse(peticion.url).pathname.replace("%20"," ");

        if(ruta == "/"){
            ruta = "index.html";
        }

        var contenido = enrutar(manejador,ruta,respuesta);  
    }
    servidor.createServer(arrancaServidor).listen(80);
}

exports.iniciar = iniciar;

所有答案都有这样的标题:

Remote Address:127.0.0.1:80
Request URL:http://localhost/css/style.css
Request Method:GET
Status Code:200 OK
Request Headersview source
Accept:text/css,*/*;q=0.1
Accept-Encoding:gzip,deflate,sdch
Accept-Language:es-419,es;q=0.8
Cache-Control:no-cache
Connection:keep-alive
Cookie:_manga_session=WkNYb1AvMFJUME9qVmRrSUtHbXBZbnRwQXRrUndZL01SeUE2K1BwYkh5dGt6M25xSllwcXk2THhWSjZpWUFQV1cyZzcxamRnTzVqMFBFRUlrNHAwM1NQWU9ML1dvY2V6TkZESnpETmhueUdQZFMyWDJZdDhLVmt2cVlvWVBmMTRHYmhIejZieW9rS0lGQWowbTJ5OXdnPT0tLTJyWksxa2w5N0dwQVVaVFp0bkRkYXc9PQ%3D%3D--069e1756464d40f36e80a86f386e9cab9f9cd014; PHPSESSID=1aj908onjk1g3muvkanhoq4s10
Host:localhost
Pragma:no-cache
Referer:http://localhost/demo.html
User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36
Response Headersview source
Connection:keep-alive
Content-Type:text/html
Date:Fri, 04 Jul 2014 08:17:17 GMT
Transfer-Encoding:chunked

在这个问题上花了几天时间,我开始绝望哈哈哈,非常感谢你。

PD:请原谅我糟糕的英语。

1 个答案:

答案 0 :(得分:0)

我自己回答,是将服务器运行到Packete Supervisor以避免每次更改都需要手动启动它。不确定Supervisor是否有某种缓存,因为当您使用node --debug运行服务器时(并且在几乎重新安装已经安装的浏览器之后绝望了解我hahaha),它可以正常工作。

不确定这是否错误地使用Supervisor,因为根据我的说法,审查更改server.js整个文件夹丢失或者只更改文件...无论如何,非常感谢那些给出任务的人阅读我的问题并保持这种工作质量:)。