我正在使用fetc从一个链接中提取数据。但是我不知道如何在时间内提取日期臂中的数据。所以我想在日期2023-10-29中提取数组。我该如何做到这一点?
JSON输出
{
"place": {
"country": "Turkey",
"countryCode": "TR",
"city": "Ankara",
"region": "Ankara",
"latitude": 39.91987,
"longitude": 32.85427
},
"times": {
"2023-10-29": [
"05:42",
"07:07",
"12:37",
"15:29",
"17:58",
"19:16"
]
}
}
React原生代码
export function getData(lat,long,date,Key){
return fetch(`https://n...`,{
method:'GET',
headers: {
'Accept': 'application/json',
'Content-Type':'application/json',
'Authorization':`Bearer ${Key}`
}
})
}
let rsp = await getData(lat,long,testDateUtc)
rsp = await rsp.json()
=> console.log("here",rsp.times."2023-10-29")
1条答案
按热度按时间eivnm1vs1#
使用方括号表示法代替点表示法。
有关访问属性的详细信息,请参见。