dongqiyou0303 2018-04-16 11:13
浏览 67
已采纳

如何让Workbox PWA与.php文件一起使用

I am new to PWA and using Workbox; So I have this test folder with the following file structure, using localhost as my server (i.e. localhost/test)


  1. index.html

  2. test.css

  3. test.jpg

  4. test.js

  5. sw.js (Code Shown below);

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

    if (workbox) {
    console.log(`Yay! Workbox is loaded
  • 写回答

2条回答 默认 最新

  • dongqian5384 2018-04-18 18:22
    关注

    To elaborate to @pate's answer.

    Workbox by default tries to make sure that pretty URL's are supported out of the box.

    So in the first example, you cached /test/index.html. So when you request /test/, Workbox precaching actually checks the precache for:

    • /test/
    • /test/index.html

    If your page was /test/about.html, and you visited the page /test/about precache would append a .html and check for that.

    When you switched to the .php extension this logic would suddenly no longer work.

    There are a few options to get this working:

    1. If you are using any of the workbox tools to build your manifest, you are use the templatedUrls feature to map to a file (More details here):

      templatedUrls: {
          '/test-2/': ['/test-2/index.php']
      }
      
    2. If you are making the precache list yourself server side, you can just tell it to precache the URL /test-2/ without the index.php and precaching will simply cache that. Please note that you must ensure the revision changes with any changes to index.php.

    3. If you aren't making the precache manifest, you can use urlManipulaion option to tell precache to check for URL's, (More details here):

      workbox.precaching.precacheAndRoute(
        [
          .....
        ],
        {
          urlManipulaion: ({url}) => {
            // TODO: Check if the URL ends in slash or not
            // Add index.php based on this.
            return [url, `${url}.php`, `${url}index.php`];
          }
        }
      );
      
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 在若依框架下实现人脸识别
  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同