node.js怎么发带请求头的get请求?

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地址发送带特定请求头的请求,请问,如何在这个里面设置请求头呢?


HUWWW
浏览 1585回答 1
1回答

Smart猫小萌

请看文档:options里设置headers对象const options = {      url:'xxxx'      headers:{         a:'asdsaf',          fsa:'asioduioasd'      } }
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Node.js