【发布时间】:2018-09-06 16:22:22
【问题描述】:
我正在使用此站点的代码:https://developers.google.com/web/tools/workbox/modules/workbox-routing
我的代码如下:
workbox.routing.registerRoute(
new RegExp('http://localhost:64445.*/'),
workbox.strategies.staleWhileRevalidate({
cacheName:'Post-Run-time-cache'
}),
'POST'
);
它给了我错误:
Uncaught (in promise) TypeError: Request method 'POST' is unsupported
我不知道出了什么问题。它来自文档,但不受支持??为什么。谢谢您的帮助。
【问题讨论】: