node学习之请求三方借口
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)
})
})
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)
})
})