如何从Bigquery结果中解析json响应?

时间:2012-11-30 05:48:44

标签: javascript jquery google-bigquery bigdata

我尝试使用示例javascript代码来调用Google bigQuery API(https://developers.google.com/bigquery/docs/authorization#client-side-javascript

JS:

function runQuery() {
   var request = gapi.client.bigquery.jobs.query({
      'projectId': project_id,
      'timeoutMs': '30000',
      'query': 'SELECT TOP(repository_language, 5) as language, COUNT(*) as count FROM [publicdata:samples.github_timeline] WHERE repository_language != "";'
    });
    request.execute(function(response) {     
        console.log(response);
        var results = response.result.rows ;
        $('#result_box').html(JSON.stringify(results, null));
    });
}

以上大查询返回

[{"f":[{"v":"JavaScript"},{"v":"949899"}]},{"f":[{"v":"Ruby"},{"v":"640659"}]},{"f":[{"v":"Java"},{"v":"568202"}]},{"f":[{"v":"Python"},{"v":"484852"}]},{"f":[{"v":"PHP"},{"v":"453830"}]}]

请帮我解决如何以JSON格式解析上述结果中的值?

{"JavaScript": "949899", "Ruby": "640659", "Java": "568202", "Python": "484852", "PHP": "453830" }

3 个答案:

答案 0 :(得分:3)

Eval是一种安全风险。

var text = '[{"f":[{"v":"JavaScript"},{"v":"949899"}]},{"f":[{"v":"Ruby"},{"v":"640659"}]},{"f":[{"v":"Java"},{"v":"568202"}]},{"f":[{"v":"Python"},{"v":"484852"}]},{"f":[{"v":"PHP"},{"v":"453830"}]}]';
myData = JSON.parse(text);
alert(myData[4].f[0].v);​

答案 1 :(得分:0)

http://jsfiddle.net/jv7vm/

var a='[{"f":[{"v":"JavaScript"},{"v":"949899"}]},{"f":[{"v":"Ruby"},{"v":"640659"}]},{"f":[{"v":"Java"},{"v":"568202"}]},{"f":[{"v":"Python"},{"v":"484852"}]},{"f":[{"v":"PHP"},{"v":"453830"}]}]';

var evala=eval('('+a+')');

for(i=0;i<evala.length;i++)
{
document.write(evala[i].f[0].v+' '+evala[i].f[1].v+'<br>');
}

答案 2 :(得分:0)

从以下javascript获得答案

var total = response.result.totalRows;
var data = [];
for(i=0; i < total; i++){
            data[i]= [ response.rows[i].f[0]["v"], response.rows[i].f[1]["v"] ];
        }

 console.log(data);