我有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/

10-08 23:30