Nodejs Parse fetch response containing object [Symbol(map)](Nodejs Parse 获取包含对象 [Symbol(map)] 的响应)
问题描述
不知道如何访问参数x-error-detail-header.
I do not know how to access the parameter x-error-detail-header.
我从使用 node-fetch npm 包的请求中收到此响应标头:
I receive this response headers from a request using node-fetch npm package:
Headers {
[Symbol(map)]:
{ 'content-type': [ 'text/xml' ],
date: [ 'Fri, 27 Apr 2018 09:46:56 GMT' ],
'retry-after': [ '51184' ],
server: [ 'xxxxx' ],
'x-error-detail-header': [ 'Account Over Rate Limit' ],
'x-x-error-code': [ 'ERR_403_DEVELOPER_OVER_RATE' ],
'x-x-responder': [ 'xxxxxxx.com' ],
'x-plan-qps-allotted': [ '2' ],
'x-plan-qps-current': [ '1' ],
'x-plan-quota-allotted': [ '50' ],
'x-plan-quota-current': [ '51' ],
'x-plan-quota-reset': [ 'Saturday, April 28, 2018 12:00:00 AM GMT' ],
'content-length': [ '28' ],
connection: [ 'Close' ] } }
我的问题是我不知道如何访问 [Symbol(map)] 对象中的参数.
My problem is that I do not know how to access the parameters that are inside [Symbol(map)] object.
推荐答案
它是一个 Headers 对象一个>.它有例如get
和 forEach
方法.例如:
It is a Headers object. It has e.g. get
and forEach
methods. For example:
getDownload = async (url) => {
const response = await fetch(url);
console.log(response.headers.get('content-type'));
return {
name: response.headers.get('Content-Disposition'),
length: response.headers.get('content-length')
}
}
注意不区分大小写.
这篇关于Nodejs Parse 获取包含对象 [Symbol(map)] 的响应的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Nodejs Parse 获取包含对象 [Symbol(map)] 的响应
基础教程推荐
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01