Reputation: 3101
Can someone please shed some light on how to parse this JSON object returned by Google Fusion Tables query APIs in Javascript?
{
"kind": "fusiontables#sqlresponse",
"columns": [
"Name",
"Function",
"Culprit"
],
"rows": [
[
"Bha3",
"9, 41",
"1"
],
[
"Bha23",
"7, 26, 56, 57",
"1"
]
]
}
I want to extract values Bha3 and Bha23 from this object. But there are no names in "columns" and "rows" objects. So essentially, this is not a JSON object(?) How do I get individual values from rows?
Upvotes: 0
Views: 1041