gpt4 book ai didi

javascript获取所有键以及对象数组的值作为数组

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

如何获取具有对象数组值的所有键作为数组?

例如,我希望将所有 src 键作为资源加载器的数组:

images = [
{"name":"an image","src":"http://source.png"},
{"name":"an image2","src":"http://source2.png"},
{"name":"an image3","src":"http://source3.png"}
];

//the solution code here..

console.log(solution);

// Output:
// ["http://source.png", "http://source.png2","http://source3.png"]

我可以循环遍历图像数组并将所有“src”标签推送到解决方案变量中,但我认为这在性能方面不是一个好的做法。

此外,我无法使用原始 image.src 标签, Assets 加载器来自框架,并且仅接受带有源的数组。

最佳答案

您可以使用 native map 函数来实现此目的。

var solution = images.map(function (img) {
return img.src;
})
console.log(solution);

关于javascript获取所有键以及对象数组的值作为数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24737457/

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