服务工作者错误:事件已响应

时间:2017-10-19 20:57:09

标签: javascript runtime-error service-worker service-worker-events

我一直收到这个错误:

  

未捕获(在承诺中)DOMException:无法执行' respondWith' on' FetchEvent':该事件已被回复。

我知道服务工作者会自动响应异步内容在fetch函数中发生的事情,但我不能确定在这段代码中哪个位是违法者:

importScripts('cache-polyfill.js');

self.addEventListener('fetch', function(event) {

  var location = self.location;

  console.log("loc", location)

  self.clients.matchAll({includeUncontrolled: true}).then(clients => {
    for (const client of clients) {
      const clientUrl = new URL(client.url);
      console.log("SO", clientUrl);
      if(clientUrl.searchParams.get("url") != undefined && clientUrl.searchParams.get("url") != '') {
        location = client.url;
      }
    }

  console.log("loc2", location)

  var url = new URL(location).searchParams.get('url').toString();

  console.log(event.request.hostname);
  var toRequest = event.request.url;
  console.log("Req:", toRequest);

  var parser2 = new URL(location);
  var parser3 = new URL(url);

  var parser = new URL(toRequest);

  console.log("if",parser.host,parser2.host,parser.host === parser2.host);
  if(parser.host === parser2.host) {
    toRequest = toRequest.replace('https://booligoosh.github.io',parser3.protocol + '//' +  parser3.host);
    console.log("ifdone",toRequest);
  }

  console.log("toRequest:",toRequest);

  event.respondWith(httpGet('https://cors-anywhere.herokuapp.com/' + toRequest));
  });
});

function httpGet(theUrl) {
    /*var xmlHttp = new XMLHttpRequest();
    xmlHttp.open( "GET", theUrl, false ); // false for synchronous request
    xmlHttp.send( null );
    return xmlHttp.responseText;*/
    return(fetch(theUrl));
}

任何帮助都将不胜感激。

2 个答案:

答案 0 :(得分:5)

问题在于,您对event.respondWith()的调用是在顶级承诺的.then()子句中,这意味着它将在顶级承诺结算后异步执行。为了获得您期望的行为,event.respondWith()需要作为fetch事件处理程序执行的一部分同步执行。

你的承诺内部的逻辑有点难以理解,所以我不确定你要完成什么,但总的来说你可以遵循这种模式:

self.addEventListerner('fetch', event => {
  // Perform any synchronous checks to see whether you want to respond.
  // E.g., check the value of event.request.url.
  if (event.request.url.includes('something')) {
    const promiseChain = doSomethingAsync()
      .then(() => doSomethingAsyncThatReturnsAURL())
      .then(someUrl => fetch(someUrl));
      // Instead of fetch(), you could have called caches.match(),
      // or anything else that returns a promise for a Response.

    // Synchronously call event.respondWith(), passing in the
    // async promise chain.
    event.respondWith(promiseChain);
  }
});

这是一般的想法。 (如果您最终使用async / await替换承诺,则代码看起来会更清晰。)

答案 1 :(得分:1)

在尝试在提取处理程序中使用异步/等待时,我也偶然发现了此错误。正如Jeff在回答中所提到的,event.respondWith必须被同步调用,并且该参数可以是任何返回可解析为响应的Promise的参数。由于异步函数确实返回了诺言,因此您所要做的就是将获取逻辑包装在异步函数中,该函数有时会返回响应对象并使用该处理程序调用{​​{1}}。

event.respondWith