I am trying to read a json file with ionic. But I got stuck in some places. can you help me?
How do I extract the json file from the sample code?
sample json :
{"MatchLiveInfoEvents":[{"elapsed":0,"elapsed_plus":0,"elapsed_text":0,"event_desc":"Maç saat 20:30 başlayacaktır","incident_code":"Comment","comment":"","event_incident_typeFK":1,"EventTypeText":"","ExtraIncidentInfo":""}]}
my codes :
$http.get('deneme.json').success(function(data){
$scope.results = data;
});