我刚刚发现了这个问题,因为我在使用 workbox-background-sync 时试图解决重复的发布请求问题。我的网络应用程序有一个上传照片的功能。但每次我确实两次上传到数据库。这是我的代码:
const bgSyncQueue = new workbox.backgroundSync.Queue(
'photoSubmissions',
{
maxRetentionTime: 48 * 60,//48 hours
callbacks: {
queueDidReplay: function (requests) {
if (requests.length === 0) {
removeAllPhotoSubmissions();
}
else {
for(let request of requests) {
if (request.error === undefined && (request.response && request.response.status === 200)) {
removePhotoSubmission();
}
}
}
}
}
});
workbox.routing.registerRoute(
new RegExp('.*\/Home\/Submit'),
args => {
const promiseChain = fetch(args.event.request.clone())
.catch(err => {
bgSyncQueue.addRequest(args.event.request);
addPhotoSubmission();
changePhoto();
});
event.waitUntil(promiseChain);
},
'POST'
);
这可能是因为fetch(args.event.request.clone())
. 如果我删除它,则不再有重复。我正在使用工作箱 3.6.1 。