gpt4 book ai didi

Angular : How to copy one array to another?

转载 作者:行者123 更新时间:2023-12-05 08:17:12 27 4
gpt4 key购买 nike

我正在将一个数组设置为另一个数组

        orders = [
{
'id': PROCESSING,
'displayName': 'Processing'
},
{
'id': SHIPPED,
'displayName': 'Shipped'
}
];

cloneOrders = [];

setOrders() {
this.orders.forEach((order: any) => {
this.cloneOrders = order;
});
}

但是当我尝试在另一个函数中获取 'cloneOrders' 的值时,它返回一个空数组

getOrders(status, minutes) {
this.cloneOrders .forEach((order: any) => {
console.log(order);
});
}

这两个功能都在同一个组件中。请帮我解决这个问题,谢谢。

最佳答案

这样试试

setOrders() {
this.cloneOrders= [...this.orders];
}

编码愉快!!

关于 Angular : How to copy one array to another?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53259573/

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