xyxsw
文章35
标签3
分类0
天气小组件入门

天气小组件入门

天气api

用的api是qweather
和风天气
qweather
api手册

我是蒟蒻

UI设计拉胯
使用世界上最好的js框架 vanilla js

已经实现的功能:

  • 获取实时气温 湿度 风向 风力 风速 大气压 能见度
  • 获取当前日期时间周几
  • 天气小图标
  • 3天天气预告
  • flex布局,适应设备

待实现功能:

  • 气温变化图表
  • 穿衣建议
  • darkmode
  • iconfont图标

通过这次小组件开发学会的东西:

  • flex的使用
  • fetch then promise (还是不会用抄的
  • 天气api的使用
  • json格式化处理
api请求格式
https://devapi.qweather.com/v7/weather/now?[请求参数]

必须参数 –location
必须参数 –key

返回数据例
// 北京实况天气 
// 商业版 https://api.qweather.com/v7/weather/now?location=101010100&key=你的KEY
// 开发版 https://devapi.qweather.com/v7/weather/now?location=101010100&key=你的KEY
{
  "code": "200",
  "updateTime": "2020-06-30T22:00+08:00",
  "fxLink": "http://hfx.link/2ax1",
  "now": {
    "obsTime": "2020-06-30T21:40+08:00",
    "temp": "24",
    "feelsLike": "26",
    "icon": "101",
    "text": "多云",
    "wind360": "123",
    "windDir": "东南风",
    "windScale": "1",
    "windSpeed": "3",
    "humidity": "72",
    "precip": "0.0",
    "pressure": "1003",
    "vis": "16",
    "cloud": "10",
    "dew": "21"
  },
  "refer": {
    "sources": [
      "Weather China"
    ],
    "license": [
      "commercial license"
    ]
  }
}
js例

function fetchwea() {
fetch(‘https://devapi.qweather.com/v7/weather/now?key=90304353392d4ea4ba00608cb2e7f9ae&location=101210101')
.then(res => res.json())
.then(json => {

  document.getElementById('temp').innerHTML=json.now.temp+"℃";

使用图标icon

图标api手册

document.getElementById('i').className='qi-'+json.now.icon;

这里json.now.icon会返回图标代码
导入图标css
改变HTML里 标签的class为qi-(图标代码)
就可以显示好看的图标啦~
images

最终效果

5CZo5V.png

本文作者:xyxsw
本文链接:https://xyxsw.ltd/2021/10/06/%E5%A4%A9%E6%B0%94%E5%B0%8F%E7%BB%84%E4%BB%B6%E5%85%A5%E9%97%A8/
版权声明:本文采用 CC BY-NC-SA 3.0 CN 协议进行许可