📜  {1} - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:27.903000             🧑  作者: Mango

代码示例1
var stream = JSONStream.parse(['rows', true, 'doc']) //rows, ANYTHING, doc
 
stream.on('data', function(data) {
  console.log('received:', data);
});
//emits anything from _before_ the first match
stream.on('header', function (data) {
  console.log('header:', data) // => {"total_rows":129,"offset":0}
})