我正在传递2个JSON数组。但是只有第一个JSON的数据才会插入Big Query中。任何人都可以建议我哪里出错了?
var req = {
method: 'POST',
url: 'https://www.googleapis.com/bigquery/v2/projects/pid/datasets/dataid/tables/tabid/insertAll',
headers: {
'Authorization': token1,
'Content-Type': 'application/json',
'scope': 'https://www.googleapis.com/auth/bigquery'
},
json: {
"rows": [{
"json": [{
'code': 'X-new',
"remark": '',
'resulting_status': 'Cancelled'
}, {
'code': 'X-jdkdjk',
"remark": '',
'resulting_status': 'Required'
}]
}]
}
};
console.log(JSON.stringify(req.json.rows));
request(req, function(error, response, body) {
if (error)
debug("Error occurred from client's server" + error);
else
console.log("Response......" + JSON.stringify(response.body));
});
答案 0 :(得分:2)
我认为您的请求正文是错误的。 “json”数组字段中有多个元素(实际上它应该只是一个对象)。你应该在“行”字段中确实有多个元素。以下是我认为您的请求应该是这样的:
json: {
"rows": [{
// optional insert id here.
"json": {
'code': 'X-new',
"remark": '',
'resulting_status': 'Cancelled'
}
}, {
// optional insert id here.
"json": {
'code': 'X-jdkdjk',
"remark": '',
'resulting_status': 'Required'
}
}]
}