为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

HUWWW 2018-08-23 21:55:00
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地址发送带特定请求头的请求,请问,如何在这个里面设置请求头呢?
查看完整描述

1 回答

?
Smart猫小萌

TA贡献1911条经验 获得超7个赞

请看文档

options里设置headers对象


const options = {
     url:'xxxx'
     headers:{         a:'asdsaf',
         fsa:'asioduioasd'
     }
}



查看完整回答
反对 回复 2018-08-26
  • 1 回答
  • 0 关注
  • 1573 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信