http.get('url',function(res){
var html = ''
res.on('data',function(chunk){
html += chunk
})
res.on('end',function(){
console.log(html)
})
})
//这样写好像并不行
const options = {
url:'xxxx'
a:'asdsaf',
fsa:'asioduioasd'
}
http.get(options,function(res){
...
})
我想给url地址发送带特定请求头的请求,请问,如何在这个里面设置请求头呢?
请看文档:
options里设置headers对象