【发布时间】:2019-11-15 10:58:56
【问题描述】:
我正在导入一个 .xlsx 文件,其中有 6000 个客户,我正在尝试遍历客户并为每个客户发出 http post 请求,但我收到此错误:
net::ERR_INSUFFICIENT_RESOURCES。
如何插入这些客户?它们需要通过我的后端才能被加密。
this.customers.forEach(customer => {
this.customerService
.createCustomer(customer)
.pipe(take(1))
.subscribe(() => {});
});
只导入了 2000 个客户。有什么办法解决吗?
谢谢。
【问题讨论】:
-
更改帖子以获取数组。 1 个帖子 = 6000 名客户。