使用service-worker在子目录中构建Angular应用

4
有没有一种方法可以构建一个 Angular 应用程序,使其可以在多个子目录中正常工作,例如:
example.com/customerOne/  
example.com/customerTwo/  
example.com/customerThree/

如果我只使用ng build --prod命令,服务工作者将在用户离线时尝试从example.com获取文件。
我的index.html使用了
<base href="./" />

ServiceWorkerModule 的注册如下:

    ServiceWorkerModule.register('./ngsw-worker.js', { enabled: environment.production  })

如果可能的话,我不想为每个客户建立或使用范围服务工作者。
这是否可能?

更新

我现在尝试了不同的配置来构建:

ng build --prod --base-href ./ --deploy-url ./

看起来它生成了一个ngsw.json文件,应该可以使用?但是不幸的是,离线时它并没有起作用。

{
  "configVersion": 1,
  "index": "./index.html",
  "assetGroups": [
    {
      "name": "app",
      "installMode": "prefetch",
      "updateMode": "prefetch",
      "urls": [
        "./common.99ba582125e1578d10cd.js",
        "./index.html",
        "./main.4bfd5158f8760f6437ea.js",
        "./polyfills.0fbb99b6827212146275.js",
        "./runtime.3d2d705784cd950436e9.js",
        "./styles.268bb547bc6265af274a.css",
        "./vendor.605927c5807ddc13f37d.js"
      ],
      "patterns": []
    },
    {
      "name": "assets",
      "installMode": "prefetch",
      "updateMode": "prefetch",
      "urls": [
        "./assets/background.jpg",
        "./assets/i18n/de.json",
        "./assets/icon/favicon.png",
        "./assets/splash/ipad_splash.png",
        "./assets/splash/ipadpro1_splash.png",
        "./assets/splash/ipadpro2_splash.png",
        "./assets/splash/iphone5_splash.png",
        "./assets/splash/iphone6_splash.png",
        "./assets/splash/iphoneplus_splash.png",
        "./assets/splash/iphonex_splash.png",
        "./assets/splash/splash_2208px.png"
      ],
      "patterns": []
    }
  ],
  "dataGroups": [],
  "hashTable": {
    "./common.99ba582125e1578d10cd.js": "8a6798ba18b916daaaf2d02f82a9534a2e18194c",
    "./index.html": "8b5f0e32aea68bd7bbd5702eddd921c31727dfec",
    "./main.4bfd5158f8760f6437ea.js": "6d24a5d2a8a78dec6d88561322b0b42c684f6bba",
    "./polyfills.0fbb99b6827212146275.js": "0640677f20e93d8ac14140a2b65321a620805f53",
    "./runtime.3d2d705784cd950436e9.js": "6d6cf18db89319bbf712acced49f91d0ca23f8fa",
    "./styles.268bb547bc6265af274a.css": "32604c26369aa52d21a3c3cde5fb11fa92eb1500",
    "./vendor.605927c5807ddc13f37d.js": "8edcc68ede502aacf57469e56fcd3751c52f8e8b"
     ...
  },
  "navigationUrls": [
    {
      "positive": true,
      "regex": "^\\/.*$"
    },
    {
      "positive": false,
      "regex": "^\\/(?:.+\\/)?[^/]*\\.[^/]*$"
    },
    {
      "positive": false,
      "regex": "^\\/(?:.+\\/)?[^/]*__[^/]*$"
    },
    {
      "positive": false,
      "regex": "^\\/(?:.+\\/)?[^/]*__[^/]*\\/.*$"
    }
  ]
}

有什么建议吗?
1个回答

0

我停止使用@ngular/serviceworker,因为我无法使其运行。

相反,我正在使用workbox。

配置:

module.exports = {
   globDirectory: 'www',
   globPatterns: ['**/*.{css,html,js,json,png,jpg,jpeg,svg,ico}'],
   swDest: 'www\\sw.js',
   swSrc: 'src\\sw.js',
   maximumFileSizeToCacheInBytes: 28 * 1024 * 1024
};

sw.js:

importScripts('https://storage.googleapis.com/workbox-cdn/releases/4.3.1/workbox-sw.js');

workbox.setConfig({
    debug: false
});

self.addEventListener('message', function (event) {
    if (event.data.action === 'skipWaiting') {
        self.skipWaiting();
    }
});

if (workbox) {
    console.log(`Yay! Workbox is loaded `);

    workbox.precaching.precacheAndRoute([]);
} else {
    console.log(`Boo! Workbox didn't load `);
}

并且用于构建:

workbox injectManifest

这个可以直接使用


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接