node 서버 에서 html 파일 을 여 는 두 가지 방법

1621 단어 nodehtml 파일
본 고 는 node 서버 에서 html 파일 을 여 는 두 가지 방법 을 상세 하 게 설명 하고 여러분 에 게 공유 합 니 다.구체 적 으로 다음 과 같 습 니 다.
방법 1:Express 를 이용 하여 정적 파일 을 위탁 관리 합 니 다자세 한 건 여기 봐.
방법 2:fs 모듈 에서 제공 하 는 readFile 방법 으로 파일 을 열 어 text/html 로 출력 합 니 다.
코드:

var express = require('express');
var fs=require("fs");
var app = express();

//  1:  express.static      ,      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() { //  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,결과:
这里写图片描述
这里写图片描述
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기