您好,登錄后才能下訂單哦!
這篇文章給大家介紹node服務器中怎么打開html文件,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
方法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é)果:
關于node服務器中怎么打開html文件就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。