일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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-4
- LG Aimers
- LG Aimers 4th
- Classification
- 딥러닝
- ChatGPT
- supervised learning
- 분류
- LLM
- PCA
- 티스토리챌린지
- AI
- gpt
- OpenAI
- 오블완
- regression
- 지도학습
- 머신러닝
- Machine Learning
- 회귀
- 해커톤
- LG
- deep learning
Archives
- Today
- Total
SYDev
[Node.js] 8. 글목록 출력 본문
해당 게시물은 유튜브 생활코딩 "Node.js" 강의 영상을 참고했습니다.
(https://www.youtube.com/watch?v=3RS_A87IAPA&list=PLuHgQVnccGMA9QQX5wqj6ThK7t2tsGxjm&index=1)
파일목록 출력
var testFolder = './data'; //'.': 터미널의 현재 위치 기준
var fs = require('fs');
fs.readdir(testFolder, function(error, filelist) {
console.log(filelist);
})
[ 'CSS', 'HTML', 'JavaScript' ]
>> 현 터미널 위치/data 경로의 파일 목록 출력
글목록 출력
위 개념을 이용하여 웹 사이트 글목록 출력 과정을 유동적으로 바꿀 수 있다.
var list = '<ol>';
var i = 0;
while(i < filelist.length) {
list += `<li><a href="/?id=${filelist[i]}">${filelist[i]}</a></li>`;
i++;
}
list += '</ol>';
먼저 <ol>태그를 위 형태로 바꾸고 원래 있던 위치에 ${list}를 넣는다.
if, else(모든 경우)에 대해서 위와 같이 바꿔주고 코드를 다음과 같이 수정하면 유동적으로 폴더 내부의 파일을 읽어들일 수 있다.
var http = require('http');
var fs = require('fs');
var url = require('url');
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 = '<ol>';
var i = 0;
while(i < filelist.length) {
list += `<li><a href="/?id=${filelist[i]}">${filelist[i]}</a></li>`;
i++;
}
list += '</ol>';
var template = `
<!doctype html>
<html>
<head>
<title>WEB1 - ${title}</title>
<meta charset="utf-8">
</head>
<body>
<h1><a href="/">WEB</a></h1>
${list}
<h2>${title}</h2>
<p>${description}</p>
</body>
</html>
`;
response.writeHead(200);
response.end(template);
})
} else {
fs.readdir('./data', function(error, filelist) {
var title = 'Welcome';
var description = 'Hello, Node.js';
var list = '<ol>';
var i = 0;
while(i < filelist.length) {
list += `<li><a href="/?id=${filelist[i]}">${filelist[i]}</a></li>`;
i++;
}
list += '</ol>';
fs.readFile(`data/${queryData.id}`, 'utf8', function(err, description) {
var title = queryData.id;
var template = `
<!doctype html>
<html>
<head>
<title>WEB1 - ${title}</title>
<meta charset="utf-8">
</head>
<body>
<h1><a href="/">WEB</a></h1>
${list}
<h2>${title}</h2>
<p>${description}</p>
</body>
</html>
`;
response.writeHead(200);
response.end(template);
});
});
}
} else {
response.writeHead(404);
response.end('Not found')
}
});
app.listen(3000);
'대딩코딩 > 웹개발 스터디' 카테고리의 다른 글
[Node.js] 10. 동기와 비동기 & callback (0) | 2023.11.18 |
---|---|
[Node.js] 9. 함수 (1) | 2023.11.18 |
[Node.js] 7. 배열과 반복 (0) | 2023.11.16 |
[Node.js] 6. Not found, 홈페이지 구현 (0) | 2023.11.16 |
[Node.js] 5. boolean -> 콘솔에서의 입력값 (1) | 2023.11.11 |