我有一个普通的index.html页面,在浏览器中浏览时有一定的jquery,css,func。但是,当我浏览nodejs localhost时,页面中没有添加任何内容。我做错了什么?
var http= require('http');
var fs=require('fs');
function onRequest(req,res){
res.writeHead(200,{'Content-Type':'text/html'});
fs.readFile('../index.html',null,function(err,data){
if(err)
{
res.writeHead(404);
res.write('File Not Found');
}
else{
res.write(data);
}
res.end();
});
[![enter image description here][1]][1]}
http.createServer(onRequest).listen(8000);