我正在开发一个chrome webextension,我正在尝试使用fetch api来使用与
类似的代码获取content-length
标头
fetch("http://example.com/", {
method: "GET"
}).then(response => console.log(response.headers.get("content-length")));
但我在控制台中得到null
值。为什么呢?
其他信息:
<all_urls>
权限XMLHTTPRequest
变体在chrome中工作正常,所以我可能缺少一些额外的参数来获取函数