node.js의 http.response.write 방법 사용 설명

640 단어
방법 설명:
요청한 클라이언트에게 응답 내용을 보냅니다.
response에서.end () 이전,response.write () 는 여러 번 실행될 수 있습니다.
구문:
 
  
response.write(chunk, [encoding])

매개변수:
chunk는 버퍼나 문자열로 보내는 내용을 표시합니다
encodingchunk가 문자열이라면 인코딩 방식을 설명하기 위해 encoding을 지정해야 합니다. 기본적으로utf-8
예:
 
  
var http = require('http');
http.createServer(function(req, res){
 res.writeHead(200, {'Content-type' : 'text/html'});
 res.write('

Node.js

');
 res.end('

Hello World

');
}).listen(3000);

좋은 웹페이지 즐겨찾기