mime类型是什么 node_Node.js - 资源解释为脚本,但以MIME类型text / plain传输

First off: I'm not using Express.

With that out of the way, when I load my index.html file it recursively readFile every attached file such as my CSS and JS pages. But it always returns this error in my inspector (Chrome):

Resource interpreted as Script but transferred with MIME type text/plain

I have absolutely no idea why it is doing this. Here is my code:

var http = require('http');

var querystring = require('querystring');

var fs = require('fs');

var url = require('url');

function route(handle, pathname, response, request){

console.log("About to route a request for " + pathname);

if (typeof handle[pathname] === "function"){

handle[pathname](response, request);

} else {

var file_path = "";

// parses the url request for a file and pulls the pathname

var url_request = url.parse(request.url).pathname;

var tmp = url_request.lastIndexOf(".");

var extension = url_request.substring((tmp + 1));

file_path = url_request.replace("/", "");

//load needed pages and static files

fs.readFile(file_path, function (error, contents){

if(error){

console.log('DIE!');

console.log(error);

response.writeHeader(500, {"Content-Type": "text/html"});

response.end("

FS READ FILE ERROR: Internal Server Error!

");

}

else{

console.log('SUCCESS!');

// set content type

if (extension === 'html') response.writeHeader(200, {"Content-Type": 'text/html'});

else if (extension === 'htm') response.writeHeader(200, {"Content-Type": 'text/html'});

else if (extension === 'css') response.writeHeader(200, {"Content-Type": 'text/css'});

else if (extension === 'js') response.writeHeader(200, {"Content-Type": 'text/javascript'});

else if (extension === 'png') response.writeHeader(200, {"Content-Type": 'image/png'});

else if (extension === 'jpg') response.writeHeader(200, {"Content-Type": 'image/jpg'});

else if (extension === 'jpeg') response.writeHeader(200, {"Content-Type": 'image/jpeg'});

else { console.log("NO CORRECT EXTENSION")};

console.log(extension);

response.end(contents);

}

response.end();

});

response.end();

}

}

exports.route = route;

How can I fix this? This has stopped my project in its tracks.

Note: this is a progression of an earlier problem I had talked about here: Node.js incorrect path problems

解决方案

Try comment out that last response.end. Don't think you need it.

response.end();

});

// response.end();

}

exports.route = route;

I suspect that response.end is getting called immediately before the one inside the fs.readfile callback has time to execute, maybe closing off the headers on the server not giving the correct header "Content-Type": 'text/javascript' a chance to get sent..

Tried it on your code, worked for me..

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值