let http=require('http');
http.get('xxxx',(res)=>{ //借口地址
let data=''; //定义data用来接收
res.on('data',(chunk)=>{ //必须要监测变化
data+=chunk;
})
res.on('end',()=>{
let result=JSON.parse(data); //转成json输出
console.log(result)
})
})
转载于:https://www.cnblogs.com/liuhuanwen/p/7678621.html