我的 Angular 6 应用程序使用 Uppy (XHRUpload) 进行文件上传。文件上传发生在不同的子域中。
上传在 localhost 上工作正常(禁用服务工作者),但是当我尝试在启用服务工作者的情况下上传文件时,它仅适用于小尺寸(几 mb)的文件,而对其他人则失败。
似乎服务工作者在等待 API 上传调用的响应,如果它在几秒钟内没有返回(对于大文件),它会失败,正如我在开发人员工具中看到的那样。
以下是我的 ngsw-config.json
{
"index": "/index.html",
"assetGroups": [
{
"name": "app",
"installMode": "prefetch",
"resources": {
"files": [
"/favicon.ico",
"/index.html",
"/*.css",
"/*.js"
]
}
},
{
"name": "assets",
"installMode": "lazy",
"updateMode": "prefetch",
"resources": {
"files": [
"/assets/**"
],
"urls": [
"https://fonts.googleapis.com/**",
"https://fonts.gstatic.com/**"
]
}
}
]
}