Node.js에 대한 강의를 꾸준히 듣고 있다.
.get('경로', function(요청내용, 응답할 방법){})의 형태로 조회할 수 있다. 물론 파일도 불러올 수 있다.
app.get('/', function(요청, 응답) {
응답.sendFile(__dirname +'/index.html')
})
app.get('/write', function(요청, 응답) {
응답.sendFile(__dirname +'/write.html')
});
ES6 신문법을 적용한다면 .get('경로',(요청내용, 응답할 방법) =>{})가 된다. 모두 숙지해야 코드를 파악할 수 있겠다.
app.post('/add', function (요청, 응답) {응답.send('전송완료');
console.log(요청. body.date);
console.log(요청.body.title);
});