你好,我想知道我的天气应用程序中的代码做错了什么。 我正在使用javascript,这是代码
enter code here
fetch(api)
.then(Response =>{
return Response.json();
})
.then(data =>{
const{temperature, summary, icon } = data.currently;
// set dom elements from api
temperaturedegree.textContent = temperature ;
temperaturedescription.textContent = summary;
locationtimezone.textContent = data.timezone;
//set icon
setIcons(icon, document.querySelector(".icon"));
})
})
}
function setIcons(icon, iconID) {
const skycons = new Skycons({color :"white"});
const currentIcon = icon.replace(/-/g, "_").toUpperCase();
skycons.play();
return skycons.set(iconID, skycons[currentIcon]);
}
});
感谢您告诉我我做错了什么。