我刚刚开始学习Node.js,从css文件中获取数据有一个小问题。当我将数据添加到索引文件代码时,它可以工作。
以下是我的代码:
app.js
var http = require('http');
var fs = require('fs');
//404 response
function send404response(response) {
response.writeHead(404, {
"Context-Type": "text/plain"
});
response.write("Error 404: Page not found!");
response.end();
}
function onRequest(request, response) {
if (request.method == 'GET' && request.url == '/') {
response.writeHead(200, {
"Context-Type": "text/html"
});
fs.createReadStream("./index.html").pipe(response);
} else {
send404response(response);
}
}
http.createServer(onRequest).listen(8888);
console
的index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="main.css" >
<title>First node app</title>
</head>
<body>
<div class="header"></div>
<div class="container">Welcome to my first website! <br> This website is created in NodeJs!</div>
</body>
</html>
的main.css
* {
margin: 0px;
padding: 0px;
}
body {
background: url('http://i.stack.imgur.com/1voHP.png') repeat;
font-size: 100%;
}
.header {
width: 100%;
height: 500px;
background: rgba(0, 0, 0, .9);
}
.container {
font-size: 1em;
margin: 0 auto;
width: 70%;
height: 90%;
background: rgba(0, 0, 0, .3);
padding: 5%;
}
* {
margin: 0px;
padding: 0px;
}
body {
background: url('http://i.stack.imgur.com/1voHP.png') repeat;
font-size: 100%;
}
.header {
width: 100%;
height: 500px;
background: rgba(0, 0, 0, .9);
}
.container {
font-size: 1em;
margin: 0 auto;
width: 70%;
height: 90%;
background: rgba(0, 0, 0, .3);
padding: 5%;
}
它们都在同一个文件夹中。
答案 0 :(得分:1)
if( request.method == 'GET' && request.url == '/' ){ response.writeHead(200, {"Context-Type": "text/html"}); fs.createReadStream("./index.html").pipe(response);
因此,如果浏览器要求/
,那么您将向他们发送主页...
}else{ send404response(response);
...如果浏览器要求其他任何内容,您将发送404错误。
<link rel="stylesheet" type="text/css" href="main.css" >
因此,当浏览器要求/main.css
时,您将发送404错误。
您需要编写一些代码来实际处理浏览器要求/main.css
。