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 回答
- 0 关注
- 1573 浏览
添加回答
举报
0/150
提交
取消