3

有谁知道角度服务工作者是否没有缓存发布请求?我使用@angular 5.2.5 将它集成到我的应用程序中,它缓存了一些请求,但其中一些是帖子,而那些他不缓存的请求,即使它们与我指定的 urls 模式匹配。这是我的 ngsw-config.json

{
  "index": "/index.html",
  "assetGroups": [
    {
      "name": "app",
      "installMode": "prefetch",
      "resources": {
        "files": [
          "/favicon.ico",
          "/index.html"
        ],
        "versionedFiles": [
          "/*.bundle.css",
          "/*.bundle.js",
          "/*.chunk.js"
        ]
      }
    },
    {
      "name": "assets",
      "installMode": "lazy",
      "updateMode": "prefetch",
      "resources": {
        "files": [
          "/assets/**"
        ],
        "urls": [
          "**/fonts.googleapis.com/**/*",
          "**/www.gstatic.com/**/*"
        ]
      }
    }
  ],
  "dataGroups": [
    {
      "name": "api-performance",
      "urls": [
        "/api/attachments/*"
      ],
      "cacheConfig": {
        "maxSize": 200,
        "maxAge": "7d",
        "timeout": "10s",
        "strategy": "performance"
      }
    },
    {
      "name": "api-freshness",
      "urls": [
        "/api/*",
        "/api/**/*",
        "/api/**/**/*",
        "/api/**/**/**/*",
        "/api/views/*",
        "/api/app-structure",
        "/api/workflow/view",
        "/api/issues/*",
        "/.well-known",
        "/certs"
      ],
      "cacheConfig": {
        "maxSize": 200,
        "maxAge": "2d",
        "timeout": "10s",
        "strategy": "freshness"
      }
    }
  ]
}

这只是为了测试而添加的,因为 /views 没有被缓存,而且那是一个发布请求,我尝试添加通配符以匹配模式,但没有成功"/api/*", "/api/**/*", "/api/**/**/*", "/api/**/**/**/*"

我在使用 chrome 进行生产构建时测试我的网站时遇到问题,因为对于我们的内部生产环境,我们使用的是自签名证书,有人知道解决方法吗?我尝试了这个响应 ,但 chrome 仍然显示错误并且服务人员没有运行

4

2 回答 2

4

Angular Service Worker 不缓存发布请求,在我看来是正确的设计原则。如果您尝试在离线时添加记录并希望在在线时与服务器数据同步,您可以尝试使用 IndexedDb 或 PouchDb(无缝同步的 JavaScript 数据库)。

以下是一些 PouchDB 入门的参考文章

于 2018-06-07T11:59:47.067 回答
0

这不是 Angular 问题,而是由于服务人员的工作方式。目前,服务工作者不会缓存任何发布请求。请关注此讨论以获取更多详细信息https://github.com/w3c/ServiceWorker/issues/977

于 2020-07-30T06:57:36.967 回答