1
以下是搜索事務的braintree api。結果以流的形式收到。但無法讀取所接收的字符串或所需格式的塊。如何使用node.js讀取分塊流
var stream = gateway.transaction.search(function (search) {
result = search.paymentMethodToken().is("h337xg");
});
completeData = ""
stream.on("data", function(chunk){
// read the chunk
completeData += chunk;
});
stream.on("end", function(){
// print the output in console
console.log(completeData);
});
stream.resume();
,可以在控制檯中看到的輸出是: [對象的對象] [對象的對象] [對象的對象] [對象的對象] [對象的對象] [對象的對象] [對象的對象]
您是否嘗試過console.log(JSON.stringify(chunk))?它可能是JSON而不是字符串 – nkskalyan 2015-03-03 09:10:03