9

我正在使用 javascript fetch API 使用以下代码查询跨域 api:

fetch('https://api.com/search?query="2016"').then(function (response) {

  console.log(response.headers.get('Access-Control-Allow-Headers'))

  console.log(response.headers.get('Content-Range'))
  console.log(response.headers.get('Accept-Range'))

  console.log(response.headers.get('Date'))
  console.log(response.headers.get('Content-Type'))
})

响应头如下:

Accept-Range:cars 300
Access-Control-Allow-Credentials:true
Access-Control-Allow-Headers:Origin, X-Requested-With, Content-Type, Accept, Content-Range, Accept-Range
Access-Control-Allow-Methods:PUT, POST, OPTIONS, GET
Access-Control-Allow-Origin:*
Cache-Control:no-cache
Connection:keep-alive
Content-Range:0-99/1941
Content-Type:application/json
Date:Tue, 12 Jan 2016 12:17:55 GMT
Transfer-Encoding:chunked

非常奇怪的是,只有“Content-Type”对其他人有用,我得到null

null
null
null
null
application/json

我需要做什么来检索那些标题?

4

2 回答 2

19

该死的,我使用的是“Access-Control-Allow-Headers”而不是“Access-Control-Expose-Headers”

现在可以使用

于 2016-01-12T14:29:52.253 回答
2

使用CORS包。并把这个参数:

cors({credentials: true, origin: true, exposedHeaders: '*'})

就像在这里写的:https ://stackoverflow.com/a/64536201/2591785

于 2020-10-26T11:26:42.293 回答