我正在开发一个nodejs项目,我使用请求模块提交restful请求并获得响应。 (这是模块链接:https://github.com/request/request)
按照说明操作,我应该可以通过调用response.headers['']
来获取响应标头,但是,当我尝试拨打var contentType = response.headers['Content-Type']
contentType
时,它似乎不起作用是undefined
。 (当我使用邮递员时,我可以从响应中获取Content-Type)。谁知道什么是错的?
这是来自网站的说明:
var request = require('request')
request(
{ method: 'GET'
, uri: 'http://www.google.com'
, gzip: true
}
, function (error, response, body) {
// body is the decompressed response body
console.log('server encoded the data as: ' + (response.headers['content-encoding'] || 'identity'))
console.log('the decoded data is: ' + body)
}
答案 0 :(得分:3)
在节点中,使用小写名称访问标题,因此使用response.headers['content-encoding']
是正确的。
您的代码段目前适用于我,并显示'服务器将数据编码为:gzip。'