반응형
fs.writeFile(file, data[, options], callback) - 데이터 파일형태로 저장
response.writeHead(302, {Location : '이동할 주소'}); - 페이지 이동하기
var fs = require('fs');
fs.writeFile(`data/${title}`, description, 'utf8', function(err){
// 첫번째 인자로 저장할 파일위치와 파일명을 넣음
// 두번째 인자로 저장할 내용을 넣음
// 마지막 인자로 실행할 callback함수
response.writeHead(302, {Location: `/?id=${title}`});
// 302는 웹브라우저에게 페이지를 이동시키라는(redirection) 응답
// Location은 이동할 주소
response.end();
});
반응형
'Dev > Nodejs' 카테고리의 다른 글
[Nodejs] 파일명 변경하고 저장 - rename(), writeFile() (0) | 2020.08.04 |
---|---|
[Nodejs] 글수정하기 - Form (0) | 2020.08.04 |
[Nodejs] POST 데이터 가져오기 - createServer (0) | 2020.08.04 |
[Nodejs] Form - GET/POST (0) | 2020.08.04 |
[Nodejs] Package Manager - NPM, PM2 (0) | 2020.08.03 |