BackgroundFetchRecord:responseReady 属性
注意:此功能在 Web Workers 中可用。
responseReady
是 BackgroundFetchRecord
接口的只读属性,它返回一个解析为 Response
的 Promise
。
值
示例
在此示例中,使用 BackgroundFetchManager.fetch()
返回单个 BackgroundFetchRecord
。返回 responseReady
的值并将其记录到控制台。
js
bgFetch.match("/ep-5.mp3").then(async (record) => {
if (!record) {
console.log("No record found");
return;
}
const response = await record.responseReady;
console.log(`Here's the response`, response);
});
规范
规范 |
---|
后台获取 # dom-backgroundfetchrecord-responseready |
浏览器兼容性
BCD 表仅在启用 JavaScript 的浏览器中加载。