429 Too Many Requests - Angular 7 - on multiple file upload
问题 I have this problem when I try to upload more than a few hundred of files at the same time. The API interface is for one file only so I have to call the service sending each file. Right now I have this: onFilePaymentSelect(event): void { if (event.target.files.length > 0) { this.paymentFiles = event.target.files[0]; } let i = 0; let save = 0; const numFiles = event.target.files.length; let procesed = 0; if (event.target.files.length > 0) { while (event.target.files[i]) { const formData = new