일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- gpt
- LG Aimers
- 딥러닝
- 티스토리챌린지
- 지도학습
- 분류
- LG Aimers 4th
- GPT-4
- LLM
- Classification
- 오블완
- AI
- supervised learning
- PCA
- regression
- deep learning
- Machine Learning
- LG
- 머신러닝
- 해커톤
- ChatGPT
- 회귀
- OpenAI
Archives
- Today
- Total
SYDev
[Node.js] 14. 파일 생성과 리다이렉션 본문
해당 게시물은 유튜브 생활코딩 "Node.js" 강의 영상을 참고했습니다.
(https://www.youtube.com/watch?v=3RS_A87IAPA&list=PLuHgQVnccGMA9QQX5wqj6ThK7t2tsGxjm&index=1)
var http = require('http');
var fs = require('fs');
var url = require('url');
var qs = require('querystring');
function templateHTML(title, list, body) {
return `
<!doctype html>
<html>
<head>
<title>WEB - ${title}</title>
<meta charset="utf-8">
</head>
<body>
<h1><a href="/">WEB2</a></h1>
${list}
<a href = "/create">create</a>
${body}
</body>
</html>
`;
}
function templateList(filelist) {
var list = '<ol>';
var i = 0;
while(i < filelist.length) {
list += `<li><a href="/?id=${filelist[i]}">${filelist[i]}</a></li>`;
i++;
}
list += '</ol>';
return list;
}
var app = http.createServer(function(request,response){
var _url = request.url;
var queryData = url.parse(_url, true).query;
var pathname = url.parse(_url, true).pathname
if(pathname === '/') {
if(queryData.id === undefined) {
fs.readdir('./data', function(error, filelist) {
var title = 'Welcome';
var description = 'Hello, Node.js';
var list = templateList(filelist);
var template = templateHTML(title, list, `<h2>${title}</h2>${description}`);
response.writeHead(200);
response.end(template);
})
} else {
fs.readdir('./data', function(error, filelist) {
fs.readFile(`data/${queryData.id}`, 'utf8', function(err, description) {
var title = queryData.id;
var list = templateList(filelist);
var template = templateHTML(title, list, `<h2>${title}</h2>${description}`);
response.writeHead(200);
response.end(template);
});
});
}
} else if(pathname === '/create') {
fs.readdir('./data', function(error, filelist) {
var title = 'Web - create';
var list = templateList(filelist);
var template = templateHTML(title, list, `
<form action = "http://localhost:3000/create_process" method = "post">
<p><input type = "text" name = "title" placeholder = "title"></p>
<p>
<textarea name = "description" placeholder = "description"></textarea>
</p>
<p>
<input type = "submit">
</p>
</form>
`);
response.writeHead(200);
response.end(template);
});
} else if(pathname === '/create_process') {
var body = '';
//request <- var app = http.createServer(function(request,response)
request.on('data', function(data) {
body += data;
});
request.on('end', function() {
var post = qs.parse(body);
var title = post.title;
var description = post.description
fs.writeFile(`data/${title}`, description, 'utf8', function(err) {
//302: 페이지를 다른 곳으로 redirection한다는 뜻
response.writeHead(302, {Location: `/?id=${title}`});
response.end();
})
});
} else {
response.writeHead(404);
response.end('Not found')
}
});
app.listen(3000);
var description = post.description
fs.writeFile(`data/${title}`, description, 'utf8', function(err) {
//302: 페이지를 다른 곳으로 redirection한다는 뜻
response.writeHead(302, {Location: `/?id=${title}`});
response.end();
})
>> post.title(사용자가 입력한 타이틀)로 페이지를 redirection(주소를 일시적으로 이동)할 수 있다.
'대딩코딩 > 웹개발 스터디' 카테고리의 다른 글
[Node.js] 16. 제작-글 삭제 (1) | 2023.11.22 |
---|---|
[Node.js] 15. 제작-글 수정 (0) | 2023.11.19 |
[Node.js] 13. Post 방식으로 전송된 데이터 받기 (0) | 2023.11.18 |
[Node.js] 12. 글생성 UI 만들기 (1) | 2023.11.18 |
[Node.js] 11. 패키지 매니저와 PM2 (1) | 2023.11.18 |