已安装的PWA无法离线启动

时间:2019-01-25 08:22:55

标签: android webpack service service-worker progressive-web-apps

我已经使用webpack离线插件制作了PWA,配置方式如下:

// Put it in the end to capture all the HtmlWebpackPlugin's
// assets manipulations and do leak its manipulations to HtmlWebpackPlugin
new OfflinePlugin({
  ServiceWorker: {
    events: true,
  },
  relativePaths: false,
  publicPath: '/',
  appShell: '/',

  // No need to cache .htaccess. See http://mxs.is/googmp,
  // this is applied before any match in `caches` section
  excludes: ['.htaccess'], // index.html

  caches: {
    main: [':rest:'],

    // All chunks marked as `additional`, loaded after main section
    // and do not prevent SW to install. Change to `optional` if
    // do not want them to be preloaded at all (cached only when first loaded)
    additional: ['*.chunk.js'],
  },

  // Removes warning for about `additional` section usage
  safeToUseOptionalCaches: true,
  autoUpdate: true,
}),

new WebpackPwaManifest({
  name: 'my_app_name',
  short_name: 'my_app_short_name',
  description: 'my_app_description',
  background_color: '#364150',
  theme_color: '#b1624d',
  icons: [
    {
      src: path.resolve('app/images/icon-512x512.png'),
      sizes: [72, 96, 120, 128, 144, 152, 167, 180, 192, 384, 512],
    },
  ],
}),

因此服务人员可以工作,我可以在chrome devtools上看到它。 chrome可以识别pwa,当我导航到我的网址(由heroku在https中托管)时,chrome会在移动设备上提示安装建议。 然后,我将应用程序安装到我的android手机上,登录并像往常一样使用它。当我脱机时,一切仍然有效,我可以浏览我的应用程序,可以将其最小化并重新打开,到目前为止一切都很好。 当我关闭我的应用程序(使用任务管理器)时,我会脱机,然后打开它,它会以白页或无连接提示出现。 有小费吗? 在成瘾中,它实际上如何起作用?每次我单击安装的pwa时,它都会检查我是否有连接并下载(如果存在)该应用程序的较新版本吗?

1 个答案:

答案 0 :(得分:2)

基于此link,在处理fetch事件时,您需要为根请求提供额外条件。

self.addEventListener('fetch', function(event) {
    // … either respond with the cached object or go ahead and fetch the actual URL
    event.respondWith(
        caches.match(event.request).then(function(response) {
            if (response) {
                // retrieve from cache
                return response;
            }

            // if not found in cache, return default offline content (only if this is a navigation request)
            if (event.request.mode === 'navigate') {
                return caches.match('./index.html');
            }

            // fetch as normal
            return fetch(event.request);
        })
    );
});

此外,在此thread中,如果未在根服务器上运行,则在连接到serviceworker时,您需要在客户端JavaScript中指定一个必需的scope参数(/ )路径。