728x90 반응형 IT/JavaScript와 Framework99 path variable, path parameter 클라이언트에서 보낸 값을 그대로 동일하게 보내는 예제. 마치 변수처럼 사용하는 것이다. app.get('/posts/:id',(req, res) => { res.send(req.params.id); }); 2021. 6. 17. json 응답 주는 예제 app.get('/post', (req, res) => { const dataFromDB = [ { userId: 1, id: 1, title: "sunt aut facere repellat provident occaecati excepturi optio reprehenderit", body: "quia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architecto" }, { userId: 1, id: 2, title: "qui est esse", body: "est rerum tempor.. 2021. 6. 17. restFull 이란..리소스 중심 설계 프론트단에서 요청하면, JSON 형태로 응답을 주는 방식 2021. 6. 17. JSONPlaceholder 검색 : fake server 기능 : 웹 서비스를 만들때, 모델이 될 만한 가상의 서비스를 쉽게 구현하는 법 가상의 리소스를 서비스 해줌 클릭해서 들어가서...아래로 스크롤하면, Resources 라고 있음. 각각의 클릭하면 가상의 글들을 json 형태로 볼수 있다. 예를 들어, comments 를 클릭하면 500개의 가상 댓글을 볼수 있는것이다. 2021. 6. 17. 이전 1 ··· 19 20 21 22 23 24 25 다음 728x90 반응형