Reputation: 913
I have an external file contacts.json. How I can convert it to a javascript array?
this is the contacts.json content:
{
"ppl1":{
"Name":"Jhon",
"Surname":"Kenneth",
"mobile":329129293,
"email":"[email protected]"
},
"ppl2":{
"Name":"Thor",
"Surname":"zvalk",
"mobile":349229293,
"email":"[email protected]"
},
"ppl3":{
"Name":"Mila",
"Surname":"Kvuls",
"mobile":329121293,
"email":"[email protected]"
}
}
Upvotes: 1
Views: 34455
Reputation: 913
Solved:
$.getJSON('contacts.json', function (json) {
var array = [];
for (var key in json) {
if (json.hasOwnProperty(key)) {
var item = json[key];
array.push({
name: item.Name,
surname: item.Surname,
mobile: item.mobile,
email: item.email
});
}
}
});
Upvotes: 13
Reputation: 3440
var items = [];
$.each(JSONObject.results.bindings, function(i, obj) {
items.push([obj.place.value, obj.lat.value, obj.long.value, obj.page.value]);
});
Upvotes: 1
Reputation: 26066
Answered over here.
// JavaScript array of JavaScript objects
var objs = json_string.map(JSON.parse);
// ...or for older browsers
var objs=[];
for (var i=json_string.map.length;i--;) objs[i]=JSON.parse(json_string.map[i]);
// ...or for maximum speed:
var objs = JSON.parse('['+json_string.map.join(',')+']');
Upvotes: -1