我在chrome版本52.0.2743.82(64位)上使用fetch.我想获得响应中的所有标题.以下片段仅返回,content-type但如果您查看chrome dev工具,则会显示许多其他响应标头.如何从fetch获取其他标头.
fetch('https://httpbin.org/get')
.then(response => {
const headers = response.headers.entries();
let header = headers.next();
while (!header.done){
console.log(headers.value);
header = header.next();
}
})
Run Code Online (Sandbox Code Playgroud)
我尝试了polyfilling(手动覆盖)github实现.仍然没有运气.
有没有在线网站我们可以在线使用Underscore或Handlebar模板而无需下载任何内容?