I have a sample json data from which i want to extract all informations which is a mixture of sub araayas also,
{
"imei": "35XXXXXXXXXXXXX",
"imei_parts": {
"fac": "XX",
"cd": "X",
"snr": "XXXXXX",
"tac": "35XXXX"
},
"brand": "NOKIA",
"info": {
"weight": 130.0,
"battery": [
"Li-Ion",
850
],
"qwerty": false,
"year": [
"2002",
"09"
],
"talk_time_umts": 0.0,
"stand_by": 200.0,
"touch_scr": false,
"size": {
"width": 57.0,
"thickness": 26.0,
"height": 130.0
},
"wifi_hotspot": false,
"cpu_clock": 104.0,
"other_band": [],
"build": "Classic",
"tel_func": false,
"lan": false,
"talk_time": 4.0,
"int_memory": "4",
"gsm_band": [
"900",
"1800",
"1900"
],
"memory_card": [
"MMC",
0
],
"umts_band": [],
"hsdpa_band": [],
"display": {
"color": [
true,
"4K"
],
"type": "LCD",
"size": {
"width": 176,
"inches": 2.1,
"height": 208
}
},
"lan_ports": null,
"os": "Symbian 6.1",
"cpu": "ARM9"
},
"model": "3650"
};
Want to extract all the information from each and every point of it. All the details are received from an API and will be pushed into my database as well.
If you have json so yo simply can parse json string.
//result -> is return result from api
var parsejson = JSON.parse(result);
Now you can access easily like -
console.log(parsejson.imei) // 35XXXXXXXXXXXXX
You can use jquery, this code..
$.getJSON("url_with_json_here", function(data){
$.each(data, function (index, value) {
console.log(value);
});
});