Google Workbox 不拦截 POST 请求

发布于 2025-01-14 16:30:06 字数 605 浏览 3 评论 0原文

我正在尝试使用带有 Workbox 的 serviceworker 来拦截 POST 请求。然而该路线似乎没有注册。当在线时,请求只是通过并且没有记录任何内容。离线时,控制台会记录 net::ERR_INTERNET_DISCONNECTED 错误。该请求似乎也没有落入 catchHandler 中。

service-worker.js

registerRoute(
    ({url}) => url.pathname.endsWith('detailScreen'),
    ({request, url}) => {
        console.log('POST', request, url)
    },
    'POST')

setCatchHandler(async options => {
    console.log(options.request, options.url)
    return Response.error();
})

请求: https://test.com/admin/crm/relation/detailScreen

I am trying to intercept POST requests using a serviceworker with Workbox. However the route does not seem to register. When online the request just goes through and nothing is logged. When offline the console logges an net::ERR_INTERNET_DISCONNECTED error. The request also does not seem to fall into the catchHandler.

service-worker.js

registerRoute(
    ({url}) => url.pathname.endsWith('detailScreen'),
    ({request, url}) => {
        console.log('POST', request, url)
    },
    'POST')

setCatchHandler(async options => {
    console.log(options.request, options.url)
    return Response.error();
})

request:
https://test.com/admin/crm/relation/detailScreen

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文