Skycon不显示图标

时间:2019-03-15 14:36:14

标签: javascript icons

你好,我想知道我的天气应用程序中的代码做错了什么。 我正在使用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]);
   }
   });

感谢您告诉我我做错了什么。

0 个答案:

没有答案