尝试循环数组并访问数据,但没有console.log
for (let i = 0; i < Locations.length; i++) {
console.log(Locations[i]);
}
谷歌MapPost的数据结构:数组--〉对象
[
{
"description": "asdlafaslfj",
"lat": 28.0440005,
"lng": -82.3992308,
"title": "tent"
},
{
"description": "asdadf",
"lat": 28.050104,
"lng": -82.39597859999999,
"title": "Blanket"
},
{
"description": "sadfasf",
"lat": 29.6900252,
"lng": -82.3733803,
"title": "Swamp"
},
{
"description": "9808",
"lat": 29.6900252,
"lng": -82.3733803,
"title": "Dorm"
},
{
"description": "ssljkfasf",
"lat": 29.6900252,
"lng": -82.3733803,
"title": "Treehouse"
},
{
"description": "asdlafaslfj",
"lat": 29.6900252,
"lng": -82.3733803,
"title": "tent"
}
]
要存储的数据:地点:地点--〉地点.title
4条答案
按热度按时间v440hwme1#
我会使用Map,因为您希望位置是一个关键字。所以输出将是类似于location { lat,lng } -〉title的内容
kr98yfug2#
这可以通过直接访问对象IE:
感谢您阅读〈3
编辑:代码打错了,我已经很长时间了,没有意义,但万一有新的人需要帮助...
jei2mxaa3#
我相信你正在尝试从数组中显示位置标题列表。为此,你可以使用map()函数。
here示例
sczxawaw4#
假设您有一个名为
Locations
的变量,您可以执行以下操作:并在闭包中执行任何需要执行的操作。