有人知道为什么我的地图功能不起作用吗?我正在尝试从API获取信息。我收到“未处理的拒绝(TypeError):result.map不是函数。”谢谢。
function getData(){
fetch("https://pomber.github.io/covid19/timeseries.json")
.then(res => res.json())
.then(
result =>{
result.map(country =>{
})
},
);
}