테스트 사이트 - 개발 중인 베타 버전입니다

Restful에서 리턴되는 JSON 값

· 4년 전 · 958

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

복수라면 object의 array가..

 

Single Article 인경우

[code]

{
  "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
    }
  }
}

[/code]

 

Multiple Article인경우

[code]

{
  "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\""
}

[/code]

 

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

 

article.subject와

 

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

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기

게시글 목록

번호 제목
262
259
255
250
248
245
238
234
233
232
229
228
227
222
217
216
215
212
210
208
203
195
192
188
184
180
177
173
170
165