请帮帮我们。 我有这段代码:
var request = gapi.client.bigquery.jobs.insert({
projectId: projectNumber,
resource: {
configuration: {
"query": {
"query": "SELECT mails FROM [test.test] LIMIT 10"
}
}
}
});
request.execute(function(response) {
$('#result_box').html(JSON.stringify(response.result, null));
console.log(response.result);
});
它返回200,但我需要获取我选择的所有字段并在js中使用每个字段。我该怎么做? 非常感谢。
亚历