gpt4 book ai didi

angular - 在 typescript 数组的每一行之间添加一个空对象

转载 作者:行者123 更新时间:2023-12-05 03:28:09 24 4
gpt4 key购买 nike

我正在使用 .map() 函数创建一个迭代器,如下所示:

var csv = this.invoices
.map(x => ({
invoiceId: x.invoiceId,
invoiceDate: x.invoiceDate,
invoiceType: x.invoiceType,
amount: x.subtotal,
}));

我要将此数组导出为 CSV,并且需要在项之间留一个空行。 CSV 助手不执行此操作,那么如何在我的 csv 数组中的每个项目之间添加一个空对象?

最佳答案

一个选择是 flatMap 而不是 map,并在数组的前面或后面添加一个空对象,然后相应地弹出或移动。

var csv = this.invoices
.flatMap(x => [
{},
{
invoiceId: x.invoiceId,
invoiceDate: x.invoiceDate,
invoiceType: x.invoiceType,
amount: x.subtotal,
}
]);
csv.shift();

关于angular - 在 typescript 数组的每一行之间添加一个空对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71289152/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com