JSON server

lim1313·2021년 8월 20일
0

TILPLUS

목록 보기
9/40

Json server

npm install -g json-server
json-server --watch ./src/db/data.json --port 3001

URL

{
  "days": [
    { "id": 1, "day": 1 },
    { "id": 2, "day": 2 },
    { "id": 3, "day": 3 }
  ],
  "words": [
    {"id": 1,
      "day": 1,
      "eng": "book"},
    { "id": 3,
      "day": 2,
      "eng": "car",}
  ]
}

http://localhost:3001/words?day=1

json.data의 키 words 안의 객체 중 키 day가 1인 모든 객체를 보여줌.

http://localhost:3001/words/1

json.data의 키 words 안의 객체 중 id가 1인 모든 객체를 보여줌.

profile
start coding

0개의 댓글