gpt4 book ai didi

node.js - 如何在node.js中获取响应头

转载 作者:太空宇宙 更新时间:2023-11-03 22:46:07 25 4
gpt4 key购买 nike

我正在开发一个nodejs项目,我使用请求模块来提交restful请求并获取响应。 (这里是模块链接:https://github.com/request/request)

按照说明,我应该能够通过调用 response.headers[''] 来获取响应 header ,但是,当我尝试调用 时,它似乎不起作用var contentType = response.headers['Content-Type']contentType未定义。 (当我使用 postman 时,我可以从响应中获取 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)
}

最佳答案

在 Node 中,通过使用小写名称访问 header ,因此使用 response.headers['content-encoding'] 是正确的。

您的代码片段目前适用于我,并显示“服务器将数据编码为:gzip。”

关于node.js - 如何在node.js中获取响应头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40700283/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com