[node.js] 파일 생성과 리다이렉션

박우현·2021년 1월 5일
0
post-thumbnail

👌 파일 생성과 리다이렉션

node.js에서 파일 생성과 리다이렉션 하는 방법을 알아본다

✔ 파일 생성

  • fs의 메소드 중 하나인 writeFile을 이용하면 파일을 생성할 수 있다.
  • response.writeHead(302)를 이용하면 리다이렉션이 가능하다.
...
fs.writeFile(`data/${title}`, description, 'utf8', function(err){ //파일생성
  response.writeHead(302, {Location: `/?id=${title}`}); //리다이렉션
  response.end();
})
...

👍 참고 사이트

0개의 댓글