Chrome webextensions:如何使用fetch api获取内容长度标头

时间:2018-05-31 09:34:03

标签: google-chrome-extension http-headers fetch content-length

我正在开发一个chrome webextension,我正在尝试使用fetch api来使用与

类似的代码获取content-length标头
fetch("http://example.com/", {
    method: "GET"
}).then(response => console.log(response.headers.get("content-length")));

但我在控制台中得到null值。为什么呢?

其他信息:

  • 我在扩展程序清单中有<all_urls>权限
  • 相同的代码在此webextension
  • 的firefox版本中正常运行
  • XMLHTTPRequest变体在chrome中工作正常,所以我可能缺少一些额外的参数来获取函数

0 个答案:

没有答案