2

我正在尝试了解 Chrome 的 html 导入实现,例如

 <link id="test_component" rel="import" href="http://localhost:8888/fail.html" onerror="handler(event)">

然而,错误事件并没有真正传达MDN中指定的有用信息。我想知道是否有任何方法可以从错误事件中获得更多信息,例如失败原因和 HTTP 状态代码。

4

1 回答 1

2

如果触发了错误事件处理程序,您可以使用或重播请求,以获取有关失败的更多信息。XMLHttpRequestfetch

function handler(event) 
{
    fetch(event.target.href)
        .then( resp => console.info(resp.status) )
        .catch( err => console.log(err) )
}
于 2017-09-08T21:08:16.270 回答