Restful에서 리턴되는 JSON 값 > RESTful

RESTful

Restful에서 리턴되는 JSON 값 정보

Restful에서 리턴되는 JSON 값

본문

제일 앞에 나오는 값이 단수라면 뒤에는 object가.

복수라면 object의 array가..

 

Single Article 인경우



{
  "article": {
    "slug": "how-to-train-your-dragon",
    "title": "How to train your dragon",
    "description": "Ever wonder how?",
    "body": "It takes a Jacobian",
    "tagList": ["dragons", "training"],
    "createdAt": "2016-02-18T03:22:56.637Z",
    "updatedAt": "2016-02-18T03:48:35.824Z",
    "favorited": false,
    "favoritesCount": 0,
    "author": {
      "username": "jake",
      "bio": "I work at statefarm",
      "image": "https://i.stack.imgur.com/xHWG8.jpg",
      "following": false
    }
  }
}

 

Multiple Article인경우



{
  "articles":[{
    "slug": "how-to-train-your-dragon",
    "title": "How to train your dragon",
    "description": "Ever wonder how?",
    "body": "It takes a Jacobian",
    "tagList": ["dragons", "training"],
    "createdAt": "2016-02-18T03:22:56.637Z",
    "updatedAt": "2016-02-18T03:48:35.824Z",
    "favorited": false,
    "favoritesCount": 0,
    "author": {
      "username": "jake",
      "bio": "I work at statefarm",
      "image": "https://i.stack.imgur.com/xHWG8.jpg",
      "following": false
    }
  }, {
    "slug": "how-to-train-your-dragon-2",
    "title": "How to train your dragon 2",
    "description": "So toothless",
    "body": "It a dragon",
    "tagList": ["dragons", "training"],
    "createdAt": "2016-02-18T03:22:56.637Z",
    "updatedAt": "2016-02-18T03:48:35.824Z",
    "favorited": false,
    "favoritesCount": 0,
    "member": {
      "mbId": "jake",
      "bio": "I work at statefarm",
      "image": "https://i.stack.imgur.com/xHWG8.jpg",
      "following": false
    }
  }, {
  }, {
  }],
  "articlesCount": 200
  "links": [ 
    "/api\/v1\/board\/free?page=2&per_page=20>; rel=\"next\"", 
    "/api\/v1\/board\/free?page=10&per_page=20>; rel=\"last\""
}

 

당연한 것 같지만, 대략 이런 구조가 되겠네요.

 

article.subject와

 

배열은 보통 forEach로 articles를 article로 매핑해서 각각을 사용하면 되는 것 같습니다.

추천
2
  • 복사

댓글 0개

© SIRSOFT
현재 페이지 제일 처음으로