I am beginner in Ionic hybrid development.I want to parse data in List in my project. I am using this webservice:http://api.geonames.org/earthquakesJSON?north=44.1&south=-9.9&east=-22.4&west=55.2&username=bertt. I want to show all dates in List.This is json Responce
{
"earthquakes": [
{
"datetime": "2011-03-11 04:46:23",
"depth": 24.4,
"lng": 142.369,
"src": "us",
"eqid": "c0001xgp",
"magnitude": 8.8,
"lat": 38.322
},
{
"datetime": "2012-04-11 06:38:37",
"depth": 22.9,
"lng": 93.0632,
"src": "us",
"eqid": "c000905e",
"magnitude": 8.6,
"lat": 2.311
},
{
"datetime": "2007-09-12 09:10:26",
"depth": 30,
"lng": 101.3815,
"src": "us",
"eqid": "2007hear",
"magnitude": 8.4,
"lat": -4.5172
}]}
Please suggest the tutorial or post some code its really help me. Thanks in advance