1
I need to list all the "posts" of this Json, but I’m not sure how to access it.
I’m trying like this:ng-repeat="post in posts"
but it returns me only one information, because I need to access the object "posts". I have tried to use one ng-repeat
in a superior div to be able to perform the ng-repeat
again with the parameter I want to access but it didn’t work either. Some light to have the "posts" in my ng-repeat
?
{
"status":"ok",
"count":10,
"count_total":54,
"pages":6,
"posts":[
{
"id":2625,
"type":"post",
"slug":"uma-feliz-pascoa-para-voce",
"url":"http:\/\/flaviovicente.com.br\/uma-feliz-pascoa-para-voce\/",
"status":"publish",
"title":"Uma feliz p\u00e1scoa para voc\u00ea!",
"title_plain":"Uma feliz p\u00e1scoa para voc\u00ea!",
"content":"<p>Feliz P\u00e1scoa pessoal! Que Jesus possa ser o centro das comemora\u00e7\u00f5es hoje! Aproveite, descanse, coma chocolate, confraternize com suas fam\u00edlias e seja feliz! Emoticon smile<\/p>\n",
"excerpt":"<p>Feliz P\u00e1scoa pessoal! Que Jesus possa ser o centro das comemora\u00e7\u00f5es hoje! Aproveite, descanse, coma chocolate, confraternize com suas fam\u00edlias e seja feliz! Emoticon smile<\/p>\n",
"date":"2016-03-25 14:38:54",
"modified":"2016-03-25 14:38:54",
"categories":[
{
"id":185,
"slug":"noticia-2",
"title":"Not\u00edcia",
"description":"",
"parent":0,
"post_count":27
}
},
{
"id":2626,
"type":"post",
"slug":"uma-feliz-pascoa-para-voce",
"url":"http:\/\/flaviovicente.com.br\/uma-feliz-pascoa-para-voce\/",
"status":"publish",
"title":"Uma feliz p\u00e1scoa para voc\u00ea!",
"title_plain":"Uma feliz p\u00e1scoa para voc\u00ea!",
"content":"<p>Feliz P\u00e1scoa pessoal! Que Jesus possa ser o centro das comemora\u00e7\u00f5es hoje! Aproveite, descanse, coma chocolate, confraternize com suas fam\u00edlias e seja feliz! Emoticon smile<\/p>\n",
"excerpt":"<p>Feliz P\u00e1scoa pessoal! Que Jesus possa ser o centro das comemora\u00e7\u00f5es hoje! Aproveite, descanse, coma chocolate, confraternize com suas fam\u00edlias e seja feliz! Emoticon smile<\/p>\n",
"date":"2016-03-25 14:38:54",
"modified":"2016-03-25 14:38:54",
"categories":[
{
"id":185,
"slug":"noticia-2",
"title":"Not\u00edcia",
"description":"",
"parent":0,
"post_count":27
}
},
{
"id":2627,
"type":"post",
"slug":"uma-feliz-pascoa-para-voce",
"url":"http:\/\/flaviovicente.com.br\/uma-feliz-pascoa-para-voce\/",
"status":"publish",
"title":"Uma feliz p\u00e1scoa para voc\u00ea!",
"title_plain":"Uma feliz p\u00e1scoa para voc\u00ea!",
"content":"<p>Feliz P\u00e1scoa pessoal! Que Jesus possa ser o centro das comemora\u00e7\u00f5es hoje! Aproveite, descanse, coma chocolate, confraternize com suas fam\u00edlias e seja feliz! Emoticon smile<\/p>\n",
"excerpt":"<p>Feliz P\u00e1scoa pessoal! Que Jesus possa ser o centro das comemora\u00e7\u00f5es hoje! Aproveite, descanse, coma chocolate, confraternize com suas fam\u00edlias e seja feliz! Emoticon smile<\/p>\n",
"date":"2016-03-25 14:38:54",
"modified":"2016-03-25 14:38:54",
"categories":[
{
"id":185,
"slug":"noticia-2",
"title":"Not\u00edcia",
"description":"",
"parent":0,
"post_count":27
}
}
],
"query":{
"ignore_sticky_posts":true,
"posts":""
}
}
There is a syntax error in your json.
– Ivan Ferrer