nodejs-03 讀取靜態html、fs組件

server端的主程式:index.js var fs = require('fs');
var http=require('http');
http.createServer(function(req, res) {
fs.readFile('index.html', function(err, data) {
if(err) {
res.writeHead(200);
res.end('no index.html');
} else {
res.writeHead(200);
res.end(data);
}
});
}).listen(8888);
解說
var fs = require('fs');//使用fs模組,開啟檔案相關用的
fs.readFile('index.html', function(err, data) { //讀檔,err:錯誤;data:讀得的檔案
res.writeHead(200); //我看網路上寫500,會顯示'找不到網頁',我想要顯示只自己的文字,所以改成200
res.end(data);//顯示index.html的檔案
靜態網頁:index.html
只要是html檔,內容隨意
Category:

0 意見: