通过http.request提取json数据,我能够分块接收数据,并将其推送到数组中。当发出请求结束的信号时,我使用buffer.concat连接数组,然后使用json.parse这个对象,这给了我一个字符串。然后,我必须再次json.parse这个字符串来获取json对象。为什么我必须两次进行json.parse?有没有更好的方法来实现有效的json对象?这是我的代码:
// requires Node.js http module
var http = require('http');
var options = {
"method" : "GET",
"hostname" : "localhost",
"port" : 3000,
"path" : `/get`
};
var req = http.request(options, function (res) {
var chunks = [];
console.log(res.statusCode);
res.on("data", function (chunk) {
// add each element to the array 'chunks'
chunks.push(chunk);
});
// adding a useless comment...
res.on("end", function () {
// concatenate the array
// iterating through this object spits out numbers (ascii byte values?)
var jsonObj1 = Buffer.concat(chunks);
console.log(typeof(jsonObj1));
// json.parse # 1
// iterating through this string spits out one character per line
var jsonObj = JSON.parse(jsonObj1);
console.log(typeof(jsonObj));
// json.parse # 2
// finally... an actual json object
var jsonObj2 = JSON.parse(jsonObj);
console.log(typeof(jsonObj2));
for (var key in jsonObj2) {
if (jsonObj2.hasOwnProperty(key)) {
var val = jsonObj2[key];
console.log(val);
}
}
});
});
req.on('error', (e) => {
console.error(`problem with request: ${e.message}`);
});
req.end();