【问题标题】:How to set start_url and service work not correct如何设置 start_url 和服务工作不正确
【发布时间】:2020-01-19 22:05:27
【问题描述】:

我看了this post about start_url

我没有找到解决这两件事的方法:

start_url$image_192$image_512

对于 start_url,我查看了 this post about start_url 但不起作用。

欢迎大家帮忙

谢谢

灯塔错误:

start_url does not respond with a 200 when offline
Web app manifest does not meet the installability requirementsFailures: Manifest does not have a PNG icon of at least 192px.
Is not configured for a custom splash screenFailures: Manifest does not have a PNG icon of at least 512px

我的清单(一部分)

  $scope = '.'; // //without directory :  "/"
  $start_url = './'; //without directory : "/"

  $image_192 =  HTTP::getShopUrl() . 'manifest/logo_192.png';
  $image_512 =  HTTP::getShopUrl() . 'manifest/logo_512.png';

  $code_langue = $this->Language->getCode();

  $manifest = [
    'dir' => 'ltr',
    'lang' => '{$code_langue}',
    'name' => '{$siteName}',
    'short_name' => '{$shortName}',
    'description' => '{$description}',
    'scope' => '{$scope}',
    'display' => 'standalone',
    'start_url' => '{$start_url}',
    'theme_color' => '#317EFB',
    'orientation' => 'any',
    'background_color' => '#fff',
    'related_applications' => '',
    'prefer_related_applications' => 'false',
    'screenshots' => [],
    'generated' => 'true',
    'icons' => [
      'src' => '{$image_512}',
      'sizes'=> '192x192 512x512',
      'type' => 'image/png'
    ],
    'src' => '{$image_512}',
    'sizes' => '512x512',
    'type' => 'image/png'
  ];

   $json_manifest = json_encode($manifest);

   echo  $json_manifest;

我的清单

// This is the "Offline page" service worker

const CACHE = "pwabuilder-page";

//  replace the following with the correct offline fallback page i.e.: const offlineFallbackPage = "offline.html";
const offlineFallbackPage = "offline.html";

// Install stage sets up the offline page in the cache and opens a new cache
self.addEventListener("install", function (event) {
  console.log("[PWA Builder] Install Event processing");

  event.waitUntil(
    caches.open(CACHE).then(function (cache) {
      console.log("[PWA Builder] Cached offline page during install");

      if (offlineFallbackPage === "offline") {
        return cache.add(new Response("TODO: Update the value of the offlineFallbackPage constant in the serviceworker."));
      }

      return cache.add(offlineFallbackPage);
    })
  );
});

// If any fetch fails, it will show the offline page.
self.addEventListener("fetch", function (event) {
  if (event.request.method !== "GET") return;

  event.respondWith(
    fetch(event.request).catch(function (error) {
      // The following validates that the request was for a navigation to a new document
      if (
        event.request.destination !== "document" ||
        event.request.mode !== "navigate"
      ) {
        return;
      }

      console.error("[PWA Builder] Network request Failed. Serving offline page " + error);
      return caches.open(CACHE).then(function (cache) {
        return cache.match(offlineFallbackPage);
      });
    })
  );
});

// This is an event that can be fired from your page to tell the SW to update the offline page
self.addEventListener("refreshOffline", function () {
  const offlinePageRequest = new Request(offlineFallbackPage);

  return fetch(offlineFallbackPage).then(function (response) {
    return caches.open(CACHE).then(function (cache) {
      console.log("[PWA Builder] Offline page updated from refreshOffline event: " + response.url);
      return cache.put(offlinePageRequest, response);
    });
  });
});

【问题讨论】:

    标签: javascript php manifest service-worker lighthouse


    【解决方案1】:

    我找到了解决方案。问题是这些元素有或没有重音 $siteName, $shortName, $description

    例如,我创建了一个函数来删除重音并应用于 $siteName

    【讨论】:

      猜你喜欢
      • 2021-03-27
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-06-27
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多