gpt4 book ai didi

javascript - 将 Json 对象转换为单个数组

转载 作者:行者123 更新时间:2023-12-03 01:39:29 25 4
gpt4 key购买 nike

enter image description here

这就是我要找的

          markers: marker[] = [
{
lat: 18.533989,
lng: 73.825592,

},
{
lat: 18.540474,
lng: 73.837510,
label: 'B',
},
{
lat: 18.540972,
lng: 73.832146,
label: 'C'
}
]

}

这是我尝试过的

for (let i = 0; i < res.length; i++) {
// Iterate over numeric indexes from 0 to 5, as everyone expects.
let newobj = res[i].destinationAddress.location.coordinates;
console.log(newobj);
for(let j = 0; j < res.length; j ++){
this.markersArr.push(newobj[j]);
}

我正在使用 Angular 6,我需要将 json obj 转换为数组

最佳答案

在内部循环中尝试此代码。

const [lat, lng] = newobj[j];
this.markersArr.push({
lat : lat,
lng : lng,
label : 'C' // or whatever value you want to add
})

关于javascript - 将 Json 对象转换为单个数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50920806/

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