sw-toolbox:POST请求未被缓存

时间:2017-01-25 09:19:32

标签: service-worker sw-toolbox

我想将POST请求缓存5分钟。我的POST请求条目看起来像

toolbox.router.post(/myPostApi/, toolbox.cacheFirst, {
    cache: {
        name: 'myCache',
        maxAgeSeconds: 300
    }
});

这不会被缓存。 GET请求的条目语法完全相同,工作正常。 我错过了什么吗?

1 个答案:

答案 0 :(得分:1)

根据对此github issue的评论,当前的服务工作者规范不允许这样做。

供参考,规格讨论可用here