Ver Mensaje Individual
  #6 (permalink)  
Antiguo 13/05/2017, 08:17
xoceunder
 
Fecha de Ingreso: junio-2012
Ubicación: En el Mundo
Mensajes: 759
Antigüedad: 11 años, 10 meses
Puntos: 10
Respuesta: duda con uso de json

Ok lo que pasa es que tengo 2 consulta para hacer
tengo una consulta de categorias para obtener todas las categorias de la tabla y luego dentro de esa categoria quiero meter todas las movie que trae esa categoria

Ejemplo json:

Código json:
Ver original
  1. {
  2.     "categories": [
  3.         {
  4.             "title":"Categoria 1",
  5.             "items": [
  6.                 {
  7.                     "description": "Welcome to the Hotel Transylvania, Draculas lavish five-stake resort, where monsters and their families can live it up, free to be the monsters they are without humans to bother them. On one special weekend, Dracula(Adam Sandler) has invited all his best friends - Frankenstein and his wife, the Mummy, the Invisible Man, the Werewolf family, and more -  to celebrate his beloved daughter Mavis' 118th birthday.  For Dracula catering to all of these legendary monsters is no problem but the party really starts when one ordinary guy stumbles into the hotel and changes... ",
  8.                     "director": "Director: Genndy Tartakovsky",
  9.                     "id": "0",
  10.                     "image": "assets/largeRowImage1.jpg",
  11.                     "largeRowImage": "https://s3.amazonaws.com/flicdn/roku/flicast/demo_media/largeHotelTrans.jpg",
  12.                     "remotePoster" : "https://s3.amazonaws.com/flicdn/roku/flicast/demo_media/poster_hoteltransylvania.jpg",
  13.                     "movieLength": "| 1h 31m |",
  14.                     "movieLengthShort": "",
  15.                     "movieYear": " 2012 |",
  16.                     "ratingPic": "assets/ratings/rating-pg-wt-fhd.png",
  17.                     "mpaaRating":"pg",
  18.                     "springboardBackground": "assets/show_bg/",
  19.                     "starRating": "assets/stars_5_fhd.png",
  20.                     "stars": 5,
  21.                     "thumbPic": "assets/poster_hoteltransylvania.jpg",
  22.                     "title": "Hotel Transylvania",
  23.                     "trailerURL":"http://flicdn.s3.amazonaws.com/roku/flicast/demo_media/hoteltansylvania-tlr1_h720p_3mbps.mp4",
  24.                     "streamURL":"http://flicdn.s3.amazonaws.com/roku/flicast/demo_media/hoteltansylvania-tlr1_h720p_3mbps.mp4",
  25.                     "duration":153
  26.                 }
  27.             ]
  28.         },
  29.         {
  30.             "title":"Categoria 2",
  31.             "items": [
  32.                 {
  33.                     "description": "Welcome to the Hotel Transylvania, Draculas lavish five-stake resort, where monsters and their families can live it up, free to be the monsters they are without humans to bother them. On one special weekend, Dracula(Adam Sandler) has invited all his best friends - Frankenstein and his wife, the Mummy, the Invisible Man, the Werewolf family, and more -  to celebrate his beloved daughter Mavis' 118th birthday.  For Dracula catering to all of these legendary monsters is no problem but the party really starts when one ordinary guy stumbles into the hotel and changes... ",
  34.                     "director": "Director: Genndy Tartakovsky",
  35.                     "id": "0",
  36.                     "image": "assets/largeRowImage1.jpg",
  37.                     "largeRowImage": "https://s3.amazonaws.com/flicdn/roku/flicast/demo_media/largeHotelTrans.jpg",
  38.                     "remotePoster" : "https://s3.amazonaws.com/flicdn/roku/flicast/demo_media/poster_hoteltransylvania.jpg",
  39.                     "movieLength": "| 1h 31m |",
  40.                     "movieLengthShort": "",
  41.                     "movieYear": " 2012 |",
  42.                     "ratingPic": "assets/ratings/rating-pg-wt-fhd.png",
  43.                     "mpaaRating":"pg",
  44.                     "springboardBackground": "assets/show_bg/",
  45.                     "starRating": "assets/stars_5_fhd.png",
  46.                     "stars": 5,
  47.                     "thumbPic": "assets/poster_hoteltransylvania.jpg",
  48.                     "title": "Hotel Transylvania",
  49.                     "trailerURL":"http://flicdn.s3.amazonaws.com/roku/flicast/demo_media/hoteltansylvania-tlr1_h720p_3mbps.mp4",
  50.                     "streamURL":"http://flicdn.s3.amazonaws.com/roku/flicast/demo_media/hoteltansylvania-tlr1_h720p_3mbps.mp4",
  51.                     "duration":153
  52.                 }
  53.             ]
  54.         },
  55.     ]
  56. }