JSON Server × CRUD

과정

1. 설치

2. public 폴더 생성

3. postman 파라미터 사용해보기

4. postman CRUD 사용해 보기

파라미터 사용 방법

Filter

Use . to access deep properties (하위 속성을 선택 할 때는 .을 사용해라)

Sort (정렬)

Add _sort and _order (ascending order by default)

For multiple fields, use the following format:

Slice (특정 데이터만 추출)

Add _start and _end or _limit (an X-Total-Count header is included in the response)

Works exactly as Array.slice (i.e. _start is inclusive and _end exclusive)

Add q

참고

Last updated

Was this helpful?