這篇文章給大家介紹node服務(wù)器中怎么打開html文件,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
創(chuàng)新互聯(lián)專業(yè)提供雅安機(jī)房托管服務(wù),為用戶提供五星數(shù)據(jù)中心、電信、雙線接入解決方案,用戶可自行在線購買雅安機(jī)房托管服務(wù),并享受7*24小時金牌售后服務(wù)。
方法1:利用 Express 托管靜態(tài)文件,詳情查看這里
方法2:使用fs模塊提供的readFile方法打開文件,讓其以text/html的形式輸出。
代碼:
var express = require('express'); var fs=require("fs"); var app = express(); //方法1:通過express.static訪問靜態(tài)文件,這里訪問的是ajax.html // app.use(express.static("./")); //方法2:使用fs.readFile打開html文件 app.get("/helloworld.html", function(request, response) { fs.readFile("./"+request.path.substr(1),function(err,data){ // body if(err){ console.log(err); //404:NOT FOUND response.writeHead(404,{"Content-Type":"text/html"}); } else{ //200:OK response.writeHead(200,{"Content-Type":"text/html"}); response.write(data.toString()); } response.end(); }); }); app.listen(3000, function() { //監(jiān)聽http://127.0.0.1:3000端口 console.log("server start"); });
瀏覽器訪問,分別輸入http://127.0.0.1:3000/hello_static.html和http://127.0.0.1:3000/hello_fs.html,結(jié)果:
關(guān)于node服務(wù)器中怎么打開html文件就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。