前言
最近在学小程序开发,刚好学到天气预报功能的制作,于是给大家分享下。
效果图
天气API获取
这里我用的是和风天气的API,打开官网注册或者登陆你的账号
进入控制台,新建应用
这是刚刚我们创建好的应用,点击添加KEY
选择WebAPI
这注册好我们的API了
微信小程序后台域名配置
登陆小程序后台,分别点击开发和开发设置
点击修改,将我们API的域名添加到request合法域名里面https://free-api.heweather.net
页面代码
.wxml
<view class="header"> <view class="top"> <view class="city"> {{city}} </view> <view class="search"> <input placeholder="输入城市名" bindinput="bindKeyInput" placeholder-style="color:white"></input> <view class="bt_search" bindtap="search"> <icon type="search" size="18" color="white"></icon> </view> </view> </view> <view class="center"> <view class="tmp"> {{tmp}}° </view> <image mode="widthFix" class="cond-image" src="/UploadFiles/2021-04-02/{{imgsrc}}.png">
.wxss
page { background-color: #f6f6f6; } .header { background-color:#64c8fa; /* background-image: linear-gradient(to right, #64a0f8, #64c8fa); */ height: 450rpx; padding-top: 32rpx; text-align: center; } .top { display: flex; justify-content: space-between; align-content: center; align-items: center; } .city { text-align: center; color: white; display: inline-block; font-size: 52rpx; margin-left: 32rpx; } .search { margin-right: 32rpx; border-radius: 8rpx; display: inline-flex; justify-content: center; align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.1); height: 70rpx; } .search input { width: 200rpx; padding: 18rpx 32rpx; text-align: left; color: white; display: inline-block; } .bt_search { border-radius: 0 8rpx 8rpx 0; height: 100%; background-color: rgba(0, 0, 0, 0.1); display: inline-flex; justify-content: center; align-content: center; align-items: center; } .bt_search icon { margin: 8rpx 18rpx; } .center { display: flex; justify-content: space-between; align-content: center; align-items: center; } .tmp { margin-left: 18rpx; display: inline-block; font-size: 180rpx; color: white; } .cond-image{ width: 200rpx; margin-right: 32rpx; margin-top: 32rpx; } .bottom{ display: flex; justify-content: space-between; align-content: center; align-items: center; } .bottom view{ color: white; margin: 32rpx; } .hourly_title{ font-weight: bold; font-size: 42rpx; padding: 18rpx 32rpx; } .hourly { width: 718rpx; margin: 0 18rpx; border-radius: 18rpx; box-shadow: 0.1rem 0.1rem 0.5rem rgba(0, 0, 0, 0.15); white-space: nowrap; background-color: white; } .h_item { margin: 18rpx 0; display: inline-block; width: 143.5rpx; text-align: center; font-size: 28rpx; } .h_img { margin: 64rpx 0; } .h_img image { width: 60rpx; } .h_item text { display: block; } .h_time { color: gray; } .h_wind_dir { margin-top: 32rpx; } .h_wind_sc { color: gray; } .h_tmp { color: #027aff; } .daily { width: 718rpx; white-space: nowrap; margin: 0 18rpx; background-color: white; border-radius: 18rpx; box-shadow: 0.1rem 0.1rem 0.5rem rgba(0, 0, 0, 0.15); } .d_item { margin: 18rpx 0; display: inline-block; width: 179.5rpx; text-align: center; font-size: 28rpx; } .d_item text { display: block; } .d_date { color: gray; } .d_wind_dir { margin-top: 32rpx; } .d_wind_sc { color: gray; } .footer{ font-size: 28rpx; color: gray; text-align: center; margin-top: 50rpx; margin-bottom: 18rpx; }
.js
Page({ /** * 页面的初始数据 */ data: { search_city: '', imgsrc:100 }, /** * 根据城市获取天气预报 */ getWeather(city) { let that = this //获取实况天气 wx.request({ url: 'https://free-api.heweather.net/s6/weather/now"imgsrc": arr[i].cond_code, "tmp": arr[i].tmp, "time": arr[i].time.substring(11), "wind_dir": arr[i].wind_dir, "wind_sc": arr[i].wind_sc } } that.setData({ hourly: hourly }) var weekArray = new Array("周日", "周一", "周二", "周三", "周四", "周五", "周六"); //获取未来7天天气预报 wx.request({ url: 'https://free-api.heweather.net/s6/weather/forecast"今天" : weekArray[new Date(arr[i].date).getDay()], d_date: arr[i].date.substring(5), imgsrc_d: arr[i].cond_code_d, imgsrc_n: arr[i].cond_code_n, wind_dir: arr[i].wind_dir, wind_sc: arr[i].wind_sc, tmp_max: arr[i].tmp_max, tmp_min: arr[i].tmp_min, cond_txt_d: arr[i].cond_txt_d } } that.setData({ daily_forecast: daily_forecast }) } }) } }) } }) }, bindKeyInput(e) { this.setData({ search_city: e.detail.value }) }, search() { this.getWeather(this.data.search_city) }, /** * 生命周期函数--监听页面加载 */ onLoad: function(options) { this.getWeather("广州") }, })
.json
{ "usingComponents": {}, "navigationBarTitleText": "天气预报" }注意问题(必看)
由于我的项目有用到天气预报的逐小时预报和7天预报,和风天气又必须实名才能获取到此数据,所以请登录和风天气后台进行实名认证
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
暂无评论...
稳了!魔兽国服回归的3条重磅消息!官宣时间再确认!
昨天有一位朋友在大神群里分享,自己亚服账号被封号之后居然弹出了国服的封号信息对话框。
这里面让他访问的是一个国服的战网网址,com.cn和后面的zh都非常明白地表明这就是国服战网。
而他在复制这个网址并且进行登录之后,确实是网易的网址,也就是我们熟悉的停服之后国服发布的暴雪游戏产品运营到期开放退款的说明。这是一件比较奇怪的事情,因为以前都没有出现这样的情况,现在突然提示跳转到国服战网的网址,是不是说明了简体中文客户端已经开始进行更新了呢?
更新日志
2024年11月05日
2024年11月05日
- 雨林唱片《赏》新曲+精选集SACD版[ISO][2.3G]
- 罗大佑与OK男女合唱团.1995-再会吧!素兰【音乐工厂】【WAV+CUE】
- 草蜢.1993-宝贝对不起(国)【宝丽金】【WAV+CUE】
- 杨培安.2009-抒·情(EP)【擎天娱乐】【WAV+CUE】
- 周慧敏《EndlessDream》[WAV+CUE]
- 彭芳《纯色角3》2007[WAV+CUE]
- 江志丰2008-今生为你[豪记][WAV+CUE]
- 罗大佑1994《恋曲2000》音乐工厂[WAV+CUE][1G]
- 群星《一首歌一个故事》赵英俊某些作品重唱企划[FLAC分轨][1G]
- 群星《网易云英文歌曲播放量TOP100》[MP3][1G]
- 方大同.2024-梦想家TheDreamer【赋音乐】【FLAC分轨】
- 李慧珍.2007-爱死了【华谊兄弟】【WAV+CUE】
- 王大文.2019-国际太空站【环球】【FLAC分轨】
- 群星《2022超好听的十倍音质网络歌曲(163)》U盘音乐[WAV分轨][1.1G]
- 童丽《啼笑姻缘》头版限量编号24K金碟[低速原抓WAV+CUE][1.1G]