gpt4 book ai didi

javascript - 如何在对象内查找数组

转载 作者:行者123 更新时间:2023-11-28 10:37:18 24 4
gpt4 key购买 nike

我有 parkingSpots 它是一个对象数组,其中包含坐标属性,它也是一个数组。

例如索引 0:

_id: "5e03c83459d0c115589067ba"
capacity: 2
description: "safas"
title: "aa"
coordinates: (2) [-34.193705512748686, 150.2320126953125]

我正在尝试查找具有arrayToBeFound 的对象。我尝试了这个解决方案和许多其他解决方案,但仍然不起作用。

    let arrayToBeFound = [e.latLng.lat(), e.latLng.lng()];
let selectedParkingSpot = parkingSpots.find(x => x.coordinates === arrayToBeFound);

我一直未定义,但它存在。有什么帮助吗?

最佳答案

我认为这是最简单的方法

let selectedParkingSpot = parkingSpots.find(x => x.coordinates[0] === arrayToBeFound[0] && x.coordinates[1] === arrayToBeFound[1]);

关于javascript - 如何在对象内查找数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59482115/

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