아래와 같이 express 의 router의 경로를 잘못 설정해줘서 그런문제이다.
const express = require('express');
const app = express();
app.get('/api/courses', (req, res)=>{
res.send(courses);
});
app.get('/api/courses:id', (req, res)=>{
const course = courses.find(c => c.id === parseInt(req.params.id));
if (!course) res.send('The given id was not found...');
res.send(course);
});
app.get();
app.get();
위 함수처럼 router.get에 경로가 제대로 들어가있는지 확인하자.
'개발 > Web Programming' 카테고리의 다른 글
Heroku config 변수 설정 (0) | 2019.11.02 |
---|---|
npm 자체 에러가 의심될때 (0) | 2019.10.27 |
fetch json파싱하는법 (0) | 2019.10.21 |
Git add, commit, push 되돌리기~ (0) | 2019.10.18 |
JavaScript 초를 00:00:00으로 바꾸는 템플릿 (0) | 2019.10.17 |