7

我已经使用 Angular Service Worker 构建了一个应用程序,除了路线外,它都可以离线运行。如果我转到基本 url,应用程序加载正常,但如果我在离线时转到任何其他路线,我会收到离线错误。

我的 ngsw-manifest.json 看起来像

    {
        "routing": {
            "index": "/index.html",
            "routes": {
                "/": {
                "match": "exact"
                },
                "/home": {
                "match": "exact"
                },
                "/paramaterlessroutes": {
                "match": "exact"
                },
                "/routeswithparamaters": {
                "match": "prefix"
                }
            }
        }
    }
4

0 回答 0