GlobalFetch
所述 GlobalFetch 介面暴露 fetch
功能,其可被用於請求資源。
fetch('/path/to/resource.json')
.then(response => {
if (!response.ok()) {
throw new Error("Request failed!");
}
return response.json();
})
.then(json => {
console.log(json);
});
已解析的值是響應物件。此 Object 包含響應的主體,以及它的狀態和標頭。