微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript-Angular Service Worker,为离线应用程序缓存api调用

我正在尝试使服务工作者能够与API请求一起工作.
我希望该应用离线运行,并具有以下配置:

    {
        "name": "api",
        "urls": ["https://x.com/**"],
        "cacheConfig": {
            "strategy": "performance",
            "maxSize": 20,
            "maxAge": "365d",
            "timeout": "5s"
        }
    }

这是我离线时xhr标签的外观:

enter image description here

这是用户请求的内容

enter image description here

如您所见,用户的API调用无法解析.

这是用户在线时的响应:

enter image description here

解决方法:

尝试这个:

>转到您的应用程序标签->清除存储->清除站点数据.
>从此更改您的DataGroups数组:

{
    "name": "api",
    "urls": ["https://x.com/**"],
    "cacheConfig": {
        "strategy": "performance",
        "maxSize": 20,
        "maxAge": "365d",
        "timeout": "5s"
    }
}

对此:

"dataGroups": [
    {
      "name": "api-performance",
      "urls": [
        "/user" //<=========== I kNow you want all API calls to be cached, but try this first and see
      ],
      "cacheConfig": {
        "strategy": "performance",
        "maxSize": 100,
        "maxAge": "3d"
      }
    }
  ]

>在PROD中保存并构建您的应用,
>第一次访问该页面.
>禁用网络
>刷新页面

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐