通过nodejs localhost打开时,CSS未应用于html页面

时间:2017-11-24 09:28:28

标签: javascript html node.js

我有一个普通的index.html页面,在浏览器中浏览时有一定的jquery,css,func。但是,当我浏览nodejs localhost时,页面中没有添加任何内容。我做错了什么?

localhost:8000 index.html normal

 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);

0 个答案:

没有答案