Angular multiple http post requests give me error: “net::ERR_INSUFFICIENT_RESOURCES”
问题 I am importing an .xlsx file, which has 6000 customers inside and I am trying to loop throught customers and make an http post request foreach customer, but I get this error: net::ERR_INSUFFICIENT_RESOURCES. How can I insert these customers? They need to be passed throught my backend in order to get encrypted. this.customers.forEach(customer => { this.customerService .createCustomer(customer) .pipe(take(1)) .subscribe(() => {}); }); Only 2000 customers are imported. Any way to fix it? Thanks.